mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	Remove unused SessionManager methods
This commit is contained in:
		
							parent
							
								
									7364155579
								
							
						
					
					
						commit
						16ca8c7536
					
				| @ -1437,11 +1437,6 @@ namespace Emby.Server.Implementations.Session | ||||
|             return AuthenticateNewSessionInternal(request, true); | ||||
|         } | ||||
| 
 | ||||
|         public Task<AuthenticationResult> CreateNewSession(AuthenticationRequest request) | ||||
|         { | ||||
|             return AuthenticateNewSessionInternal(request, false); | ||||
|         } | ||||
| 
 | ||||
|         public Task<AuthenticationResult> AuthenticateQuickConnect(AuthenticationRequest request, string token) | ||||
|         { | ||||
|             var result = _authRepo.Get(new AuthenticationInfoQuery() | ||||
| @ -1784,18 +1779,9 @@ namespace Emby.Server.Implementations.Session | ||||
|             } | ||||
| 
 | ||||
|             var item = _libraryManager.GetItemById(new Guid(itemId)); | ||||
| 
 | ||||
|             var info = GetItemInfo(item, null); | ||||
| 
 | ||||
|             ReportNowViewingItem(sessionId, info); | ||||
|         } | ||||
| 
 | ||||
|         /// <inheritdoc /> | ||||
|         public void ReportNowViewingItem(string sessionId, BaseItemDto item) | ||||
|         { | ||||
|             var session = GetSession(sessionId); | ||||
| 
 | ||||
|             session.NowViewingItem = item; | ||||
|             session.NowViewingItem = GetItemInfo(item, null); | ||||
|         } | ||||
| 
 | ||||
|         /// <inheritdoc /> | ||||
|  | ||||
| @ -8,7 +8,6 @@ using Jellyfin.Data.Events; | ||||
| using MediaBrowser.Controller.Authentication; | ||||
| using MediaBrowser.Controller.Library; | ||||
| using MediaBrowser.Controller.Security; | ||||
| using MediaBrowser.Model.Dto; | ||||
| using MediaBrowser.Model.Session; | ||||
| using MediaBrowser.Model.SyncPlay; | ||||
| 
 | ||||
| @ -263,13 +262,6 @@ namespace MediaBrowser.Controller.Session | ||||
|         /// <param name="itemId">The item identifier.</param> | ||||
|         void ReportNowViewingItem(string sessionId, string itemId); | ||||
| 
 | ||||
|         /// <summary> | ||||
|         /// Reports the now viewing item. | ||||
|         /// </summary> | ||||
|         /// <param name="sessionId">The session identifier.</param> | ||||
|         /// <param name="item">The item.</param> | ||||
|         void ReportNowViewingItem(string sessionId, BaseItemDto item); | ||||
| 
 | ||||
|         /// <summary> | ||||
|         /// Authenticates the new session. | ||||
|         /// </summary> | ||||
| @ -285,13 +277,6 @@ namespace MediaBrowser.Controller.Session | ||||
|         /// <returns>Task{SessionInfo}.</returns> | ||||
|         Task<AuthenticationResult> AuthenticateQuickConnect(AuthenticationRequest request, string token); | ||||
| 
 | ||||
|         /// <summary> | ||||
|         /// Creates the new session. | ||||
|         /// </summary> | ||||
|         /// <param name="request">The request.</param> | ||||
|         /// <returns>Task<AuthenticationResult>.</returns> | ||||
|         Task<AuthenticationResult> CreateNewSession(AuthenticationRequest request); | ||||
| 
 | ||||
|         /// <summary> | ||||
|         /// Reports the capabilities. | ||||
|         /// </summary> | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user