Fix typo in string of exception message

This was meant to start with $, not including
the $ char inside the string, otherwise the
compiler string interpolation doesn't work.
This commit is contained in:
Andres G. Aragoneses 2016-10-24 14:57:04 +08:00
parent 209ab1454f
commit c644bac4e4

View file

@ -488,7 +488,7 @@ namespace TLSharp.Core.Network
internal int DC { get; private set; }
internal MigrationNeededException(int dc)
: base ("$Your phone number is registered to a different dc: {dc}. Please migrate.")
: base ($"Your phone number is registered to a different DC: {dc}. Please migrate.")
{
DC = dc;
}