Bladeren bron

rename SeekPosition to SeekPositionTicks

Luke Pulverenti 12 jaren geleden
bovenliggende
commit
2aaf939f22

+ 3 - 3
MediaBrowser.Api/SessionsService.cs

@@ -119,8 +119,8 @@ namespace MediaBrowser.Api
         /// <summary>
         /// Gets or sets the position to seek to
         /// </summary>
-        [ApiMember(Name = "SeekPosition", Description = "The position to seek to.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "POST")]
-        public long? SeekPosition { get; set; }
+        [ApiMember(Name = "SeekPositionTicks", Description = "The position to seek to.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "POST")]
+        public long? SeekPositionTicks { get; set; }
 
         /// <summary>
         /// Gets or sets the play command.
@@ -200,7 +200,7 @@ namespace MediaBrowser.Api
                         Data = new PlaystateRequest
                         {
                             Command = request.Command,
-                            SeekPosition = request.SeekPosition
+                            SeekPositionTicks = request.SeekPositionTicks
                         }
 
                     }, CancellationToken.None).ConfigureAwait(false);

+ 0 - 1
MediaBrowser.Controller/Entities/Movies/Movie.cs

@@ -3,7 +3,6 @@ using System;
 using System.Collections.Generic;
 using System.IO;
 using System.Linq;
-using System.Runtime.Serialization;
 using System.Threading;
 using System.Threading.Tasks;
 

+ 1 - 1
MediaBrowser.Model/Session/PlaystateCommand.cs

@@ -36,6 +36,6 @@ namespace MediaBrowser.Model.Session
     {
         public PlaystateCommand Command { get; set; }
 
-        public long? SeekPosition { get; set; }
+        public long? SeekPositionTicks { get; set; }
     }
 }

+ 2 - 1
MediaBrowser.Server.Implementations/Sorting/OfficialRatingComparer.cs

@@ -1,4 +1,5 @@
-using MediaBrowser.Controller.Entities;
+using System;
+using MediaBrowser.Controller.Entities;
 using MediaBrowser.Controller.Localization;
 using MediaBrowser.Controller.Sorting;
 using MediaBrowser.Model.Querying;