You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to add a link with a long title, Unmark raises a database error:
A DATABASE ERROR OCCURRED
Error Number: 1406
Data too long for column 'title' at row 1
I tested this through the bookmarklet. I could't test the Chtome extension because I have a local installation and didn't find a way to customize the installation url.
You can easily test this issue on most GitHub repos (eg https://github.com/Kickball/awesome-selfhosted) because it appears that GitHub puts also the description of the repo in the title.
It would be nice if Umark could automatically truncate long titles.
The text was updated successfully, but these errors were encountered:
I had the same error popped up on the bookmarklet today. I didn't test the side effects, but it seems to be working for now.
Edit your database and change marks -> title -> varchar(150) to varchar(500) or something higher.
This will allow 500 character long titles to be added. Programmatically title parameter can be checked and if it exceeds 150 characters can be cropped down to 150.
When I try to add a link with a long title, Unmark raises a database error:
I tested this through the bookmarklet. I could't test the Chtome extension because I have a local installation and didn't find a way to customize the installation url.
You can easily test this issue on most GitHub repos (eg https://github.com/Kickball/awesome-selfhosted) because it appears that GitHub puts also the description of the repo in the title.
It would be nice if Umark could automatically truncate long titles.
The text was updated successfully, but these errors were encountered: