diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-01 00:23:34 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-01 00:23:34 -0400 |
| commit | ddbbe9ce4e054565272a69e1ea709f8df4d96479 (patch) | |
| tree | ffa400a985dfd9ff4a2d43e113c7c6dad92cb2f4 /MediaBrowser.Server.Startup.Common/Migrations | |
| parent | 2626b6f3729097e083f381936738d17335f48f1c (diff) | |
post release housecleaning
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/Migrations')
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/Migrations/RenameXmlOptions.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Startup.Common/Migrations/RenameXmlOptions.cs b/MediaBrowser.Server.Startup.Common/Migrations/RenameXmlOptions.cs index be8ae2f814..49114b96f3 100644 --- a/MediaBrowser.Server.Startup.Common/Migrations/RenameXmlOptions.cs +++ b/MediaBrowser.Server.Startup.Common/Migrations/RenameXmlOptions.cs @@ -44,7 +44,12 @@ namespace MediaBrowser.Server.Startup.Common.Migrations { if (string.Equals(options[i], "Media Browser Legacy Xml", StringComparison.OrdinalIgnoreCase)) { - options[i] = "Media Browser Xml"; + options[i] = "Emby Xml"; + changed = true; + } + else if (string.Equals(options[i], "Media Browser Xml", StringComparison.OrdinalIgnoreCase)) + { + options[i] = "Emby Xml"; changed = true; } } |
