appdata-debug-4

This commit is contained in:
Untone 2024-03-02 10:19:56 +03:00
parent 040f7ead7e
commit baeb5a68ea

View File

@ -235,7 +235,7 @@ func (c *provider) GetUserAppDataFromRedis(userId string) (string, error) {
// Parse userProfileString into a UserProfile struct
var userProfile UserProfile
err := json.Unmarshal([]byte(userProfileString), &userProfile)
err = json.Unmarshal([]byte(userProfileString), &userProfile)
if err != nil {
return "", err
}