aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Updates/CheckForUpdateResult.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-29 15:59:52 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-29 15:59:52 -0400
commit1a5a75854bd3ec4cdd771c9afdaefe0acb62c03c (patch)
tree1479a46b06ca7e3a22f4c1646e6a65aa533e2f33 /MediaBrowser.Model/Updates/CheckForUpdateResult.cs
parentb87f759460490792b7ceaf0513ab0d87a869e73b (diff)
update translations
Diffstat (limited to 'MediaBrowser.Model/Updates/CheckForUpdateResult.cs')
-rw-r--r--MediaBrowser.Model/Updates/CheckForUpdateResult.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/MediaBrowser.Model/Updates/CheckForUpdateResult.cs b/MediaBrowser.Model/Updates/CheckForUpdateResult.cs
index c9bc2d6b9..ff0bba197 100644
--- a/MediaBrowser.Model/Updates/CheckForUpdateResult.cs
+++ b/MediaBrowser.Model/Updates/CheckForUpdateResult.cs
@@ -1,5 +1,4 @@
-using System;
-
+
namespace MediaBrowser.Model.Updates
{
/// <summary>
@@ -17,9 +16,9 @@ namespace MediaBrowser.Model.Updates
/// Gets or sets the available version.
/// </summary>
/// <value>The available version.</value>
- public Version AvailableVersion
+ public string AvailableVersion
{
- get { return Package != null ? Package.version : new Version(0, 0); }
+ get { return Package != null ? Package.versionStr : "0.0.0.1"; }
set { } // need this for the serializer
}