From cf61ac0264883e53f024088a88148b87cbbf89a7 Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Sun, 17 Mar 2013 23:10:21 -0400 Subject: fixed client type display for ios. also fixed display preferences saving. --- .../Connectivity/ClientConnectionInfo.cs | 2 +- MediaBrowser.Model/Connectivity/ClientType.cs | 41 ---------------------- 2 files changed, 1 insertion(+), 42 deletions(-) delete mode 100644 MediaBrowser.Model/Connectivity/ClientType.cs (limited to 'MediaBrowser.Model/Connectivity') diff --git a/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs b/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs index a70dddaa65..565ce6ec24 100644 --- a/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs +++ b/MediaBrowser.Model/Connectivity/ClientConnectionInfo.cs @@ -22,7 +22,7 @@ namespace MediaBrowser.Model.Connectivity /// /// The type of the client. [ProtoMember(2)] - public ClientType ClientType { get; set; } + public string Client { get; set; } /// /// Gets or sets the last activity date. diff --git a/MediaBrowser.Model/Connectivity/ClientType.cs b/MediaBrowser.Model/Connectivity/ClientType.cs deleted file mode 100644 index 3ae3ded21a..0000000000 --- a/MediaBrowser.Model/Connectivity/ClientType.cs +++ /dev/null @@ -1,41 +0,0 @@ -namespace MediaBrowser.Model.Connectivity -{ - /// - /// Enum ClientType - /// - public enum ClientType - { - /// - /// The other - /// - Other, - /// - /// The android - /// - Android, - /// - /// The dashboard - /// - Dashboard, - /// - /// The dlna - /// - Dlna, - /// - /// The ios - /// - Ios, - /// - /// The pc - /// - Pc, - /// - /// The windows phone - /// - WindowsPhone, - /// - /// The windows RT - /// - WindowsRT - } -} -- cgit v1.2.3