mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-27 18:10:54 +01:00
removed excess hashing in providers and made user data key-based
This commit is contained in:
@@ -7,11 +7,6 @@ namespace MediaBrowser.Controller.Providers
|
||||
/// </summary>
|
||||
public class BaseProviderInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the provider id.
|
||||
/// </summary>
|
||||
/// <value>The provider id.</value>
|
||||
public Guid ProviderId { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the last refreshed.
|
||||
/// </summary>
|
||||
@@ -21,7 +16,7 @@ namespace MediaBrowser.Controller.Providers
|
||||
/// Gets or sets the file system stamp.
|
||||
/// </summary>
|
||||
/// <value>The file system stamp.</value>
|
||||
public Guid FileSystemStamp { get; set; }
|
||||
public string FileSystemStamp { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the last refresh status.
|
||||
/// </summary>
|
||||
@@ -32,11 +27,6 @@ namespace MediaBrowser.Controller.Providers
|
||||
/// </summary>
|
||||
/// <value>The provider version.</value>
|
||||
public string ProviderVersion { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the data hash.
|
||||
/// </summary>
|
||||
/// <value>The data hash.</value>
|
||||
public Guid DataHash { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user