remove special characters from sort names

This commit is contained in:
Luke Pulverenti 2016-04-25 13:35:49 -04:00
parent 4d16f97047
commit 21b90bf6e1
2 changed files with 2 additions and 2 deletions

View file

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

View file

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