mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
fix: webui not login get config
This commit is contained in:
parent
37d0354751
commit
2cfde6b75a
@ -5,6 +5,14 @@ import { resolve } from "node:path";
|
|||||||
import { OB11Config } from "@/webui/ui/components/WebApi";
|
import { OB11Config } from "@/webui/ui/components/WebApi";
|
||||||
const isEmpty = (data: any) => data === undefined || data === null || data === '';
|
const isEmpty = (data: any) => data === undefined || data === null || data === '';
|
||||||
export const OB11GetConfigHandler: RequestHandler = async (req, res) => {
|
export const OB11GetConfigHandler: RequestHandler = async (req, res) => {
|
||||||
|
let isLogin = await DataRuntime.getQQLoginStatus();
|
||||||
|
if(!isLogin){
|
||||||
|
res.send({
|
||||||
|
code: -1,
|
||||||
|
message: 'Not Login'
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
const uin = await DataRuntime.getQQLoginUin();
|
const uin = await DataRuntime.getQQLoginUin();
|
||||||
let configFilePath = resolve(__dirname, `./config/onebot_${uin}.json`);
|
let configFilePath = resolve(__dirname, `./config/onebot_${uin}.json`);
|
||||||
let data: OB11Config;
|
let data: OB11Config;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user