remove special characters from sort names

pull/702/head
Luke Pulverenti 9 years ago
parent 6b1c6ace22
commit 5401641e2b

@ -605,7 +605,7 @@ namespace MediaBrowser.Controller.Entities
builder.Append(chunkBuilder); builder.Append(chunkBuilder);
} }
//Logger.Debug("ModifySortChunks Start: {0} End: {1}", name, builder.ToString()); //Logger.Debug("ModifySortChunks Start: {0} End: {1}", name, builder.ToString());
return builder.ToString(); return builder.ToString().RemoveDiacritics();
} }
[IgnoreDataMember] [IgnoreDataMember]

@ -80,7 +80,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
private IDbCommand _updateInheritedRatingCommand; private IDbCommand _updateInheritedRatingCommand;
private IDbCommand _updateInheritedTagsCommand; private IDbCommand _updateInheritedTagsCommand;
private const int LatestSchemaVersion = 63; private const int LatestSchemaVersion = 64;
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="SqliteItemRepository"/> class. /// Initializes a new instance of the <see cref="SqliteItemRepository"/> class.

Loading…
Cancel
Save