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
My program quits at the following code when using the resource.syso generated from this package. Without it, it works fine. There are no errors. I've no clue what's going on here, since the program can create a directory and a log file just fine.
// Open the storage db (access token, etc.)db, err=sql.Open("sqlite3", makePath("storage.db"))
iferr!=nil {
log.Printf("Error opening storage.db: %s", err)
}
log.Print("THIS IS LOGGED")
if_, err=db.Exec(`CREATE TABLE IF NOT EXISTS data( key STRING PRIMARY KEY NOT NULL, value STRING NOT NULL )`); err!=nil {
log.Printf("Error creating storage.db table: %s", err)
}
log.Print("THIS ISN'T LOGGED (program has terminated)")
My program quits at the following code when using the resource.syso generated from this package. Without it, it works fine. There are no errors. I've no clue what's going on here, since the program can create a directory and a log file just fine.
This is my versioninfo.json: https://hasteb.in/oficovut.json
And this is my manifest (though same issue without it): https://hasteb.in/wuyeyira.xml
edit: After a lot of digging I found the issue, see my reply here: #39
The text was updated successfully, but these errors were encountered: