mirror of
https://github.com/LamGC/ContentGrabbingJi.git
synced 2025-07-03 05:47:26 +00:00
[Change] 调整数据存储的路径设置及存储目录参数名;
This commit is contained in:
@ -22,9 +22,9 @@ public class BotAdminCommandProcess {
|
||||
|
||||
private final static Logger log = LoggerFactory.getLogger(BotAdminCommandProcess.class.getSimpleName());
|
||||
|
||||
private final static File globalPropFile = new File("global.properties");
|
||||
private final static File globalPropFile = new File(System.getProperty("cgj.botDataDir"), "global.properties");
|
||||
|
||||
private final static File pushListFile = new File("pushList.json");
|
||||
private final static File pushListFile = new File(System.getProperty("cgj.botDataDir"), "pushList.json");
|
||||
|
||||
private final static Hashtable<Long, JsonObject> pushInfoMap = new Hashtable<>();
|
||||
|
||||
|
Reference in New Issue
Block a user