We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 038b40b commit d2567d7Copy full SHA for d2567d7
Sources/_StructuredQueriesSQLite/DatabaseFunction.swift
@@ -82,7 +82,7 @@ extension QueryBinding {
82
case .uuid(let value):
83
sqlite3_result_text(db, value.uuidString.lowercased(), -1, SQLITE_TRANSIENT)
84
case .invalid(let error):
85
- sqlite3_result_error(db, error.localizedDescription, -1)
+ sqlite3_result_error(db, error.underlyingError.localizedDescription, -1)
86
}
87
88
0 commit comments