Compare commits

..

1 Commits

Author SHA1 Message Date
11fd49ff9f fix(deps): update module github.com/wneessen/go-mail to v0.4.1
Some checks failed
continuous-integration/drone/pr Build is failing
2024-02-14 17:05:30 +00:00
3 changed files with 2 additions and 6 deletions

View File

@ -13,7 +13,7 @@
},
"homepage": "https://vikunja.io/",
"funding": "https://opencollective.com/vikunja",
"packageManager": "pnpm@8.15.3",
"packageManager": "pnpm@8.15.2",
"keywords": [
"todo",
"productivity",

View File

@ -394,7 +394,7 @@ const editor = useEditor({
return {
...this.parent?.(),
id: {
default: () => createRandomID(),
default: createRandomID,
parseHTML: element => element.getAttribute('data-id'),
renderHTML: attributes => ({
'data-id': attributes.id,

View File

@ -179,10 +179,6 @@ func initSqliteEngine() (engine *xorm.Engine, err error) {
path = "./db.db"
}
if path == "memory" {
return xorm.NewEngine("sqlite3", "file::memory:?cache=shared")
}
// Try opening the db file to return a better error message if that does not work
var exists = true
if _, err := os.Stat(path); err != nil {