Fixed client id bug

This commit is contained in:
Kwoth 2016-11-15 12:02:23 +01:00
parent afb0da1170
commit 0d9c4aeb86

View File

@ -63,7 +63,7 @@ namespace NadekoBot.Services.Impl
ulong clId = 0;
ulong.TryParse(data[nameof(ClientId)], out clId);
ClientId = ulong.Parse(data[nameof(ClientId)]);
ClientId = clId;
SoundCloudClientId = data[nameof(SoundCloudClientId)];
CarbonKey = data[nameof(CarbonKey)];