mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-08-06 06:07:05 +02:00
Set default MaxActiveVideoStreams to 0 in UserPolicy and migration
This commit is contained in:
parent
6214b7be3a
commit
94f52410f6
@ -50,7 +50,7 @@ namespace MediaBrowser.Model.Users
|
||||
LoginAttemptsBeforeLockout = -1;
|
||||
|
||||
MaxActiveSessions = 0;
|
||||
MaxActiveVideoStreams = 1;
|
||||
MaxActiveVideoStreams = 0;
|
||||
MaxParentalRating = null;
|
||||
|
||||
EnableAllChannels = true;
|
||||
|
@ -15,7 +15,7 @@ namespace Jellyfin.Server.Implementations.Migrations
|
||||
schema: "jellyfin",
|
||||
table: "Users",
|
||||
nullable: false,
|
||||
defaultValue: 1);
|
||||
defaultValue: 0);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
|
Loading…
Reference in New Issue
Block a user