mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 05:43:54 +03:00
[PR #3861] [MERGED] API Fixes #9733
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/jellyfin/jellyfin/pull/3861
Author: @crobibero
Created: 8/10/2020
Status: ✅ Merged
Merged: 8/19/2020
Merged by: @anthonylavado
Base:
master← Head:fixes📝 Commits (10+)
7b864e3parameter isn't actually required460c3ddconvert dependent controller functions to di helper classc5e9cf1Use proper IHttpContextAccessor2e3ef18fix route typo2f853b9fix datetime parsing4b87bbffix routeb0532c5add proper converter for legacy datetime3ba1f4cadd proper converter for legacy datetimebb08e25userid isn't actually requiredeb7ab31add support for GetActivityLogs📊 Changes
18 files changed (+1593 additions, -1275 deletions)
View changed files
📝
Emby.Server.Implementations/ApplicationHost.cs(+3 -0)📝
Jellyfin.Api/Controllers/AudioController.cs(+6 -161)📝
Jellyfin.Api/Controllers/DevicesController.cs(+1 -1)📝
Jellyfin.Api/Controllers/DynamicHlsController.cs(+8 -440)📝
Jellyfin.Api/Controllers/HlsSegmentController.cs(+2 -2)📝
Jellyfin.Api/Controllers/LiveTvController.cs(+3 -3)📝
Jellyfin.Api/Controllers/MediaInfoController.cs(+38 -500)📝
Jellyfin.Api/Controllers/NotificationsController.cs(+0 -1)📝
Jellyfin.Api/Controllers/PlaystateController.cs(+1 -1)📝
Jellyfin.Api/Controllers/SessionController.cs(+2 -2)📝
Jellyfin.Api/Controllers/UniversalAudioController.cs(+141 -140)📝
Jellyfin.Api/Controllers/VideosController.cs(+3 -4)➕
Jellyfin.Api/Helpers/AudioHelper.cs(+195 -0)➕
Jellyfin.Api/Helpers/DynamicHlsHelper.cs(+550 -0)📝
Jellyfin.Api/Helpers/FileStreamResponseHelpers.cs(+17 -19)➕
Jellyfin.Api/Helpers/MediaInfoHelper.cs(+573 -0)➕
Jellyfin.Api/TypeConverters/DateTimeTypeConverter.cs(+44 -0)📝
Jellyfin.Server/Startup.cs(+6 -1)📄 Description
95% copy & paste from controller to helper class.
Required attribute here was causing validation error responses to web, guess the parameter wasn't actually required.
7b864e3a3cAlso snuck in some api route fixes.
Fixes #3885
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.