Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
b8519259
authored
Feb 24, 2026
by
CaIon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: handle nil setting in user retrieval from database
parent
a36d0f90
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
+9
-1
model/user.go
+9
-1
No files found.
model/user.go
View file @
b8519259
package
model
package
model
import
(
import
(
"database/sql"
"encoding/json"
"encoding/json"
"errors"
"errors"
"fmt"
"fmt"
...
@@ -853,10 +854,17 @@ func GetUserSetting(id int, fromDB bool) (settingMap dto.UserSetting, err error)
...
@@ -853,10 +854,17 @@ func GetUserSetting(id int, fromDB bool) (settingMap dto.UserSetting, err error)
// Don't return error - fall through to DB
// Don't return error - fall through to DB
}
}
fromDB
=
true
fromDB
=
true
err
=
DB
.
Model
(
&
User
{})
.
Where
(
"id = ?"
,
id
)
.
Select
(
"setting"
)
.
Find
(
&
setting
)
.
Error
// can be nil setting
var
safeSetting
sql
.
NullString
err
=
DB
.
Model
(
&
User
{})
.
Where
(
"id = ?"
,
id
)
.
Select
(
"setting"
)
.
Find
(
&
safeSetting
)
.
Error
if
err
!=
nil
{
if
err
!=
nil
{
return
settingMap
,
err
return
settingMap
,
err
}
}
if
safeSetting
.
Valid
{
setting
=
safeSetting
.
String
}
else
{
setting
=
""
}
userBase
:=
&
UserBase
{
userBase
:=
&
UserBase
{
Setting
:
setting
,
Setting
:
setting
,
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment