Bump media source upload limit from 10mb to 20mb (#161436)

This commit is contained in:
uptimeZERO_
2026-01-30 12:07:37 +00:00
committed by GitHub
parent 9a1f517e6e
commit 91a3e488b1

View File

@@ -24,7 +24,7 @@ from .const import DOMAIN, MEDIA_CLASS_MAP, MEDIA_MIME_TYPES, MEDIA_SOURCE_DATA
from .error import Unresolvable
from .models import BrowseMediaSource, MediaSource, MediaSourceItem, PlayMedia
MAX_UPLOAD_SIZE = 1024 * 1024 * 10
MAX_UPLOAD_SIZE = 1024 * 1024 * 20
LOGGER = logging.getLogger(__name__)