aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/Users/UserManager.cs
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2021-10-26 14:35:32 +0200
committerGitHub <noreply@github.com>2021-10-26 14:35:32 +0200
commit1b478cfdec9865ff98706c824eb7ef736e74082b (patch)
treefe57e9cabc1553d04b2897367e98ccb9b143ff89 /Jellyfin.Server.Implementations/Users/UserManager.cs
parentdc72d90703eab626f5241755251fa97c9b854604 (diff)
parent1b6eb2ff2d2cc3973fa529c721cf50e3ad849646 (diff)
Merge pull request #6735 from Bond-009/nullable8
Enable nullable for more files
Diffstat (limited to 'Jellyfin.Server.Implementations/Users/UserManager.cs')
-rw-r--r--Jellyfin.Server.Implementations/Users/UserManager.cs6
1 files changed, 1 insertions, 5 deletions
diff --git a/Jellyfin.Server.Implementations/Users/UserManager.cs b/Jellyfin.Server.Implementations/Users/UserManager.cs
index 704a6a84e..8ca6e8d21 100644
--- a/Jellyfin.Server.Implementations/Users/UserManager.cs
+++ b/Jellyfin.Server.Implementations/Users/UserManager.cs
@@ -530,11 +530,7 @@ namespace Jellyfin.Server.Implementations.Users
}
}
- return new PinRedeemResult
- {
- Success = false,
- UsersReset = Array.Empty<string>()
- };
+ return new PinRedeemResult();
}
/// <inheritdoc />