pull/265/head
xiaojunnuo 2024-11-19 18:07:34 +08:00
parent ea27c96362
commit be55695691
1 changed files with 4 additions and 2 deletions

View File

@ -28,7 +28,6 @@ export class PlusService {
} }
licenseInfo.license = license; licenseInfo.license = license;
await this.sysSettingsService.saveSetting(licenseInfo); await this.sysSettingsService.saveSetting(licenseInfo);
await this.updateLicense(license);
}; };
return new PlusRequestService({ subjectId, bindUrl, installTime, saveLicense }); return new PlusRequestService({ subjectId, bindUrl, installTime, saveLicense });
@ -56,7 +55,9 @@ export class PlusService {
async bindUrl(url: string) { async bindUrl(url: string) {
const plusRequestService = await this.getPlusRequestService(); const plusRequestService = await this.getPlusRequestService();
return await plusRequestService.bindUrl(url); const res = await plusRequestService.bindUrl(url);
this.plusRequestService = null;
return res;
} }
async register() { async register() {
@ -65,6 +66,7 @@ export class PlusService {
if (!licenseInfo.license) { if (!licenseInfo.license) {
await plusRequestService.register(); await plusRequestService.register();
logger.info('站点注册成功'); logger.info('站点注册成功');
this.plusRequestService = null;
} }
} }