mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
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:
parent
209ab1454f
commit
c644bac4e4
|
|
@ -488,7 +488,7 @@ namespace TLSharp.Core.Network
|
||||||
internal int DC { get; private set; }
|
internal int DC { get; private set; }
|
||||||
|
|
||||||
internal MigrationNeededException(int dc)
|
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;
|
DC = dc;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue