mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-07 08:18:54 +01:00
update timestamp parse for plugins
This commit is contained in:
@@ -372,7 +372,7 @@ namespace Emby.Server.Implementations.Plugins
|
|||||||
Overview = packageInfo.Overview,
|
Overview = packageInfo.Overview,
|
||||||
Owner = packageInfo.Owner,
|
Owner = packageInfo.Owner,
|
||||||
TargetAbi = versionInfo.TargetAbi ?? string.Empty,
|
TargetAbi = versionInfo.TargetAbi ?? string.Empty,
|
||||||
Timestamp = DateTime.Parse(versionInfo.Timestamp ?? string.Empty),
|
Timestamp = string.IsNullOrEmpty(versionInfo.Timestamp) ? DateTime.MinValue : DateTime.Parse(versionInfo.Timestamp),
|
||||||
Version = versionInfo.Version,
|
Version = versionInfo.Version,
|
||||||
Status = PluginStatus.Active,
|
Status = PluginStatus.Active,
|
||||||
AutoUpdate = true,
|
AutoUpdate = true,
|
||||||
|
|||||||
Reference in New Issue
Block a user