1
0
mirror of https://github.com/Kopano-dev/kopano-ol-extension.git synced 2023-10-10 13:37:40 +02:00

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

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