Rework text to blob in sqlite to support utf16

This commit is contained in:
2024-10-30 17:26:14 +01:00
parent 96cd4172b3
commit 4c9d10b9f4
3 changed files with 8 additions and 7 deletions

View File

@@ -29,7 +29,7 @@ func (ps *PlayerService) Query(query PlayerServiceQuery) ([]Player, error) {
for rows.Next() {
player := Player{}
err := rows.Scan(&player.ID, &player.Name, &player.Guild.ID, &player.Notes, &player.Associations)
err := rows.Scan(&player.ID, &player.Name, &player.Guild.ID)
if err != nil {
return res, fmt.Errorf("failed scanning player: %v", err)
}