Skip to content

Commit

Permalink
fix..
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 committed Aug 3, 2024
1 parent 5d5dbfd commit d08ff74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logic/services/firebase/FirebaseUserService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public async Task<bool> UserAllowedPublishWorkloads()
.Document(me.Uid)
.GetSnapshotAsync();

if (user.Exists)
if (!user.Exists)
return false;
var userData = user.ConvertTo<UserDetails>();

Expand Down

0 comments on commit d08ff74

Please sign in to comment.