aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2020-05-19 16:22:45 -0400
committerPatrick Barron <barronpm@gmail.com>2020-05-20 10:04:00 -0400
commitd27b2481a0765a97fde6101b4b3898200d60f0eb (patch)
treeedc5ff60d0d3a81345f82f396c633d7b91eed14e /Jellyfin.Data
parente7b297c67baee73a737c61170ad6a55c2f1d08d3 (diff)
Fix an issue causing multiple permissions/preferences objects to be created.
Diffstat (limited to 'Jellyfin.Data')
-rw-r--r--Jellyfin.Data/Entities/User.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/Jellyfin.Data/Entities/User.cs b/Jellyfin.Data/Entities/User.cs
index 7252ef230..334e6306d 100644
--- a/Jellyfin.Data/Entities/User.cs
+++ b/Jellyfin.Data/Entities/User.cs
@@ -77,8 +77,6 @@ namespace Jellyfin.Data.Entities
Preferences = new HashSet<Preference>();
AccessSchedules = new HashSet<AccessSchedule>();
- AddDefaultPermissions();
- AddDefaultPreferences();
Init();
}