Added constructor to backendid with int64, as that seems to occur in Z-Push for 0.

This commit is contained in:
Patrick Simpson 2017-09-26 17:07:41 +02:00
parent 0eb1d065e1
commit 1febd7030e
1 changed files with 1 additions and 0 deletions

View File

@ -98,6 +98,7 @@ namespace Acacia.ZPush
public BackendId(string id) : base(id) { }
public BackendId(int id) : base(id) { }
public BackendId(long id) : base(id.ToString()) { }
#region Standard overrides