remove debugging

This commit is contained in:
zefie
2025-08-08 23:05:44 -04:00
parent 2f0a1eba33
commit 8760979242

View File

@@ -232,13 +232,9 @@ class WTVClientSessionData {
getUserStoreDirectory(subscriber = false, user_id = null) {
if (user_id === null) user_id = this.user_id;
var userstore = this.getAccountStoreDirectory() + this.path.sep + this.ssid + this.path.sep;
console.log("DEBUG: getAccountStoreDirectory() =", this.getAccountStoreDirectory());
console.log("DEBUG: userstore before getAbsolutePath =", userstore);
if (!subscriber) userstore += "user" + user_id + this.path.sep;
console.log("DEBUG: userstore after user_id =", userstore);
// getAccountStoreDirectory() already returns an absolute path, so we don't need getAbsolutePath again
var result = userstore + this.path.sep;
console.log("DEBUG: final result =", result);
return result;
}