remove debugging
This commit is contained in:
@@ -232,13 +232,9 @@ class WTVClientSessionData {
|
|||||||
getUserStoreDirectory(subscriber = false, user_id = null) {
|
getUserStoreDirectory(subscriber = false, user_id = null) {
|
||||||
if (user_id === null) user_id = this.user_id;
|
if (user_id === null) user_id = this.user_id;
|
||||||
var userstore = this.getAccountStoreDirectory() + this.path.sep + this.ssid + this.path.sep;
|
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;
|
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
|
// getAccountStoreDirectory() already returns an absolute path, so we don't need getAbsolutePath again
|
||||||
var result = userstore + this.path.sep;
|
var result = userstore + this.path.sep;
|
||||||
console.log("DEBUG: final result =", result);
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user