48 lines
1.8 KiB
Diff
48 lines
1.8 KiB
Diff
From adb23ffced5408cc010b3863ba88fe81e39f17ce Mon Sep 17 00:00:00 2001
|
|
From: Max <max@privatevoid.net>
|
|
Date: Tue, 15 Mar 2022 21:38:42 +0100
|
|
Subject: [PATCH 8/9] disable subscription bullshit
|
|
|
|
---
|
|
libs/startup.js | 4 ++--
|
|
libs/webServerSuperPaths.js | 2 +-
|
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/libs/startup.js b/libs/startup.js
|
|
index 247eeee..a810171 100644
|
|
--- a/libs/startup.js
|
|
+++ b/libs/startup.js
|
|
@@ -383,7 +383,7 @@ module.exports = function(s,config,lang,io){
|
|
}
|
|
})
|
|
}
|
|
- config.userHasSubscribed = false
|
|
+ config.userHasSubscribed = true
|
|
//check disk space every 20 minutes
|
|
if(config.autoDropCache===true){
|
|
setInterval(function(){
|
|
@@ -404,7 +404,7 @@ module.exports = function(s,config,lang,io){
|
|
await checkForStaticUsers()
|
|
//check for subscription
|
|
checkSubscription(config.subscriptionId,function(hasSubcribed){
|
|
- config.userHasSubscribed = hasSubcribed
|
|
+ config.userHasSubscribed = true
|
|
//check terminal commander
|
|
checkForTerminalCommands(function(){
|
|
//load administrators (groups)
|
|
diff --git a/libs/webServerSuperPaths.js b/libs/webServerSuperPaths.js
|
|
index bfbccf9..1d1bf3b 100644
|
|
--- a/libs/webServerSuperPaths.js
|
|
+++ b/libs/webServerSuperPaths.js
|
|
@@ -167,7 +167,7 @@ module.exports = function(s,config,lang,app){
|
|
}
|
|
checkSubscription(subscriptionId,function(hasSubcribed){
|
|
endData.ok = hasSubcribed
|
|
- config.userHasSubscribed = hasSubcribed
|
|
+ config.userHasSubscribed = true
|
|
s.closeJsonResponse(res,endData)
|
|
})
|
|
},res,req)
|
|
--
|
|
2.35.1
|
|
|