Set default MaxActiveVideoStreams to 0 in UserPolicy and migration

This commit is contained in:
Mahmoud Almontasser 2025-08-03 23:25:36 +02:00
parent 6214b7be3a
commit 94f52410f6
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ namespace MediaBrowser.Model.Users
LoginAttemptsBeforeLockout = -1;
MaxActiveSessions = 0;
MaxActiveVideoStreams = 1;
MaxActiveVideoStreams = 0;
MaxParentalRating = null;
EnableAllChannels = true;

View File

@ -15,7 +15,7 @@ namespace Jellyfin.Server.Implementations.Migrations
schema: "jellyfin",
table: "Users",
nullable: false,
defaultValue: 1);
defaultValue: 0);
}
/// <inheritdoc />