[PR #6649] [MERGED] Fix Warnings in Emby.Server.Implementations (Part 2) #11069

Closed
opened 2026-02-07 06:31:52 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/6649
Author: @barronpm
Created: 10/2/2021
Status: Merged
Merged: 10/6/2021
Merged by: @Bond-009

Base: masterHead: implementations-warn2


📝 Commits (10+)

  • 078200d Fix warnings in Sorting
  • c09ef74 Fix warnings in IO
  • 8c8ca9a Fix warnings in UdpSocket
  • 7ae055f Fix warnings in UdpServer
  • b17a452 Fix warnings in ServerApplicationPaths
  • 7ea4c84 Fix warnings in InstallationManager
  • aa3c330 Fix warnings in Playlists
  • 876a902 Fix warnings in Library
  • 7180983 Fix warnings in SessionManager
  • 80223c5 Fix warnings in WebSocketConnection

📊 Changes

40 files changed (+204 additions, -178 deletions)

View changed files

📝 Emby.Server.Implementations/Channels/ChannelManager.cs (+1 -1)
📝 Emby.Server.Implementations/Devices/DeviceId.cs (+10 -11)
📝 Emby.Server.Implementations/EntryPoints/LibraryChangedNotifier.cs (+1 -1)
📝 Emby.Server.Implementations/HttpServer/WebSocketConnection.cs (+3 -3)
📝 Emby.Server.Implementations/IO/LibraryMonitor.cs (+20 -16)
📝 Emby.Server.Implementations/IO/ManagedFileSystem.cs (+9 -9)
📝 Emby.Server.Implementations/Library/LibraryManager.cs (+2 -2)
📝 Emby.Server.Implementations/Library/MediaSourceManager.cs (+1 -1)
📝 Emby.Server.Implementations/Library/PathExtensions.cs (+1 -1)
📝 Emby.Server.Implementations/Library/Resolvers/Audio/MusicAlbumResolver.cs (+3 -0)
📝 Emby.Server.Implementations/Library/Resolvers/BaseVideoResolver.cs (+4 -0)
📝 Emby.Server.Implementations/Library/Resolvers/Books/BookResolver.cs (+3 -4)
📝 Emby.Server.Implementations/Library/Resolvers/Movies/MovieResolver.cs (+2 -2)
📝 Emby.Server.Implementations/Library/Resolvers/SpecialFolderResolver.cs (+0 -1)
📝 Emby.Server.Implementations/Library/SearchEngine.cs (+1 -1)
📝 Emby.Server.Implementations/Library/UserDataManager.cs (+7 -8)
📝 Emby.Server.Implementations/Library/UserViewManager.cs (+10 -8)
📝 Emby.Server.Implementations/Library/Validators/ArtistsValidator.cs (+7 -4)
📝 Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs (+2 -2)
📝 Emby.Server.Implementations/LiveTv/EmbyTV/IRecorder.cs (+7 -0)

...and 20 more files

📄 Description

Changes
Fixes more warnings (Down to 16 now). Depends on #6648

Issues
Part of #2149


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jellyfin/jellyfin/pull/6649 **Author:** [@barronpm](https://github.com/barronpm) **Created:** 10/2/2021 **Status:** ✅ Merged **Merged:** 10/6/2021 **Merged by:** [@Bond-009](https://github.com/Bond-009) **Base:** `master` ← **Head:** `implementations-warn2` --- ### 📝 Commits (10+) - [`078200d`](https://github.com/jellyfin/jellyfin/commit/078200d8d4ba6d986cce8881b17d30b82e58b038) Fix warnings in Sorting - [`c09ef74`](https://github.com/jellyfin/jellyfin/commit/c09ef74b516c04b820bf7cdd1060ab7ceb102c13) Fix warnings in IO - [`8c8ca9a`](https://github.com/jellyfin/jellyfin/commit/8c8ca9adedf3e9df3c6fb83ee0967f0af5fc9fc3) Fix warnings in UdpSocket - [`7ae055f`](https://github.com/jellyfin/jellyfin/commit/7ae055f740aa72ebe585d3c34a015a4a96e01ea2) Fix warnings in UdpServer - [`b17a452`](https://github.com/jellyfin/jellyfin/commit/b17a452d1677f6511fa9c066e16c9c7a00dca518) Fix warnings in ServerApplicationPaths - [`7ea4c84`](https://github.com/jellyfin/jellyfin/commit/7ea4c844c89e0bfa7a21c7a34e51182ec791ee8c) Fix warnings in InstallationManager - [`aa3c330`](https://github.com/jellyfin/jellyfin/commit/aa3c33060d775c8d050bd3975cd692c80081ea66) Fix warnings in Playlists - [`876a902`](https://github.com/jellyfin/jellyfin/commit/876a902356fb5c0e502b440d591287a53e2488fc) Fix warnings in Library - [`7180983`](https://github.com/jellyfin/jellyfin/commit/718098365409247812c1f5aa4605be20ff3f67da) Fix warnings in SessionManager - [`80223c5`](https://github.com/jellyfin/jellyfin/commit/80223c548c43acabf07a581393ea45e7f165eeef) Fix warnings in WebSocketConnection ### 📊 Changes **40 files changed** (+204 additions, -178 deletions) <details> <summary>View changed files</summary> 📝 `Emby.Server.Implementations/Channels/ChannelManager.cs` (+1 -1) 📝 `Emby.Server.Implementations/Devices/DeviceId.cs` (+10 -11) 📝 `Emby.Server.Implementations/EntryPoints/LibraryChangedNotifier.cs` (+1 -1) 📝 `Emby.Server.Implementations/HttpServer/WebSocketConnection.cs` (+3 -3) 📝 `Emby.Server.Implementations/IO/LibraryMonitor.cs` (+20 -16) 📝 `Emby.Server.Implementations/IO/ManagedFileSystem.cs` (+9 -9) 📝 `Emby.Server.Implementations/Library/LibraryManager.cs` (+2 -2) 📝 `Emby.Server.Implementations/Library/MediaSourceManager.cs` (+1 -1) 📝 `Emby.Server.Implementations/Library/PathExtensions.cs` (+1 -1) 📝 `Emby.Server.Implementations/Library/Resolvers/Audio/MusicAlbumResolver.cs` (+3 -0) 📝 `Emby.Server.Implementations/Library/Resolvers/BaseVideoResolver.cs` (+4 -0) 📝 `Emby.Server.Implementations/Library/Resolvers/Books/BookResolver.cs` (+3 -4) 📝 `Emby.Server.Implementations/Library/Resolvers/Movies/MovieResolver.cs` (+2 -2) 📝 `Emby.Server.Implementations/Library/Resolvers/SpecialFolderResolver.cs` (+0 -1) 📝 `Emby.Server.Implementations/Library/SearchEngine.cs` (+1 -1) 📝 `Emby.Server.Implementations/Library/UserDataManager.cs` (+7 -8) 📝 `Emby.Server.Implementations/Library/UserViewManager.cs` (+10 -8) 📝 `Emby.Server.Implementations/Library/Validators/ArtistsValidator.cs` (+7 -4) 📝 `Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs` (+2 -2) 📝 `Emby.Server.Implementations/LiveTv/EmbyTV/IRecorder.cs` (+7 -0) _...and 20 more files_ </details> ### 📄 Description **Changes** Fixes more warnings (Down to 16 now). Depends on #6648 **Issues** Part of #2149 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-07 06:31:52 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#11069