mirror of
https://github.com/DoctorMcKay/node-steamcommunity.git
synced 2026-08-19 13:13:28 +08:00
Convert the number to a string
This commit is contained in:
@@ -562,8 +562,7 @@ SteamCommunity.prototype.getAllGroupComments = function(gid, from, count, callba
|
||||
|
||||
SteamCommunity.prototype.deleteGroupComment = function(gid, cid, callback) {
|
||||
if(Number.isInteger(cid)) {
|
||||
callback(new Error("Pass the comment id as a string"));
|
||||
return;
|
||||
cid = cid.toString();
|
||||
}
|
||||
|
||||
var options = {
|
||||
|
||||
Reference in New Issue
Block a user