diff --git a/Builder/IISMainHandler/build.txt b/Builder/IISMainHandler/build.txt index c2ad461..dab8090 100644 --- a/Builder/IISMainHandler/build.txt +++ b/Builder/IISMainHandler/build.txt @@ -1 +1 @@ -1887 \ No newline at end of file +1889 \ No newline at end of file diff --git a/Common/dataobjects/AvatarsSettings.cs b/Common/dataobjects/AvatarsSettings.cs index 8c08736..347f089 100644 --- a/Common/dataobjects/AvatarsSettings.cs +++ b/Common/dataobjects/AvatarsSettings.cs @@ -52,7 +52,7 @@ namespace FLocal.Common.dataobjects { protected override void doFromHash(Dictionary data) { this._accountId = int.Parse(data[TableSpec.FIELD_ACCOUNTID]); - this._avatarsIds = new HashSet(from stringId in data[TableSpec.FIELD_AVATARS].Split(',') select int.Parse(stringId)); + this._avatarsIds = new HashSet(from stringId in data[TableSpec.FIELD_AVATARS].Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries) select int.Parse(stringId)); } private static readonly Dictionary accountid2id = new Dictionary();