Compare commits

..

No commits in common. "63f1c9a54e2091c7073d6207026435f86db562b6" and "325401e198d5ab64f99c2ad51ccdbbca149e166f" have entirely different histories.

3 changed files with 7 additions and 17 deletions

View File

@ -31,16 +31,7 @@
# 更新日志
## 1.4.1
- 修复书签名过长无法导入问题
## 1.4
- 优化首图加载逻辑
- 支持 OneEnv 备份文件导入
## 1.3
## 2023-08-13
![pic](https://s3.fleyx.com/picbed/2023/08/Snipaste_2023-08-13_15-01-20.png)
@ -48,6 +39,7 @@
位置:右上角个人中心-管理搜索引擎
# TODO
- [x] 主页功能

View File

@ -53,7 +53,7 @@ public class Bookmark {
this.setUserId(userId);
this.setPath(path);
this.setType(FOLDER_TYPE);
this.setName(name.length() > 2000 ? name.substring(0, 1999) : name);
this.setName(name);
this.setAddTime(addTime);
this.setSort(sort);
this.setCreateTime(System.currentTimeMillis());
@ -64,7 +64,7 @@ public class Bookmark {
this.setUserId(userId);
this.setPath(path);
this.setType(BOOKMARK_TYPE);
this.setName(name.length() > 2000 ? name.substring(0, 1999) : name);
this.setName(name);
this.setUrl(url);
this.setIcon(icon);
this.setSort(sort);

View File

@ -1,2 +0,0 @@
alter table bookmark
modify name varchar(2000) not null;