Skip to content

Commit

Permalink
Fix getting utf-8 texts from Sqlite3QueryResult.
Browse files Browse the repository at this point in the history
  • Loading branch information
Relintai committed Jul 18, 2024
1 parent f377181 commit 5025e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/database_sqlite/sqlite3_query_result.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ int Sqlite3QueryResult::run_query_finished(void *data, int argc, char **argv, ch
Cell c;

if (argv[i]) {
c.data = argv[i];
c.data = String::utf8(argv[i]);
} else {
c.null = true;
}
Expand Down

0 comments on commit 5025e3f

Please sign in to comment.