Fixed wrong owner property

This commit is contained in:
Alex Corn 2023-06-24 02:53:15 -04:00
parent ab9baeafc6
commit b2bffddfbe
No known key found for this signature in database
GPG Key ID: E51989A3E7A27FDF

View File

@ -176,7 +176,7 @@ function CSteamSharedFile(community, data) {
* @param {function} callback - Takes only an Error object/null as the first argument
*/
CSteamSharedFile.prototype.deleteComment = function(cid, callback) {
this._community.deleteSharedFileComment(this.userID, this.id, cid, callback);
this._community.deleteSharedFileComment(this.owner, this.id, cid, callback);
};
/**