From 6d664a90738323089633f170ac5ad4ee5580e866 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Thu, 18 Jul 2019 20:03:49 +0200 Subject: [PATCH] [sync] Disable errors --- lib/src/Connection.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/Connection.dart b/lib/src/Connection.dart index f203faa..a6be6ba 100644 --- a/lib/src/Connection.dart +++ b/lib/src/Connection.dart @@ -273,7 +273,7 @@ class Connection { final syncResp = await _syncRequest; if (hash != _syncRequest.hashCode) return; if (syncResp is ErrorResponse) { - onError.add(syncResp); + //onError.add(syncResp); await Future.delayed(Duration(seconds: syncErrorTimeoutSec), () {}); } else { try {