fix cookie login failed

This commit is contained in:
wanxp 2023-09-12 15:41:40 +08:00
parent 881f9f36f6
commit 3def97db92
4 changed files with 9 additions and 4 deletions

@ -1,7 +1,7 @@
{ {
"id": "obsidian-douban-plugin", "id": "obsidian-douban-plugin",
"name": "Douban", "name": "Douban",
"version": "1.8.9", "version": "1.9.0",
"minAppVersion": "0.12.0", "minAppVersion": "0.12.0",
"description": "This is a plugin that can import movies/books/musics/notes/games info data from Douban for Obsidian .", "description": "This is a plugin that can import movies/books/musics/notes/games info data from Douban for Obsidian .",
"author": "Wanxp", "author": "Wanxp",

@ -1,6 +1,6 @@
{ {
"name": "obsidian-douban-plugin", "name": "obsidian-douban-plugin",
"version": "1.8.9", "version": "1.9.0",
"description": "This is a plugin for Obsidian (https://obsidian.md) that can import data from Douban (https://www.douban.com/).", "description": "This is a plugin for Obsidian (https://obsidian.md) that can import data from Douban (https://www.douban.com/).",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {

@ -208,7 +208,11 @@ export default class DoubanPlugin extends Plugin {
this.userComponent = new UserComponent(this.settingsManager); this.userComponent = new UserComponent(this.settingsManager);
this.netFileHandler = new NetFileHandler(this.fileHandler); this.netFileHandler = new NetFileHandler(this.fileHandler);
if (this.userComponent.needLogin()) { if (this.userComponent.needLogin()) {
try {
await this.userComponent.loginByCookie(); await this.userComponent.loginByCookie();
}catch (e) {
log.debug(i18nHelper.getMessage('100101'));
}
} }
this.addSettingTab(new DoubanSettingTab(this.app, this)); this.addSettingTab(new DoubanSettingTab(this.app, this));

@ -34,6 +34,7 @@
"1.8.6": "0.12.0", "1.8.6": "0.12.0",
"1.8.7": "0.12.0", "1.8.7": "0.12.0",
"1.8.8": "0.12.0", "1.8.8": "0.12.0",
"1.8.9": "0.12.0" "1.8.9": "0.12.0",
"1.9.0": "0.12.0"
} }