mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-05-02 06:33:38 +01:00
Make build deprecation more resilient to clock skew.
This commit is contained in:
committed by
Alex Hart
parent
f572eb5322
commit
3ff218f9c6
@@ -165,7 +165,8 @@ final class CdsiSocket {
|
||||
webSocket.close(1000, "OK");
|
||||
break;
|
||||
}
|
||||
} catch (IOException | AttestationDataException | SgxCommunicationFailureException e) {
|
||||
} catch (IOException | AttestationDataException | SgxCommunicationFailureException | AssertionError e) {
|
||||
// TODO only catching AssertionError because of libsignal bug. Remove when bug is fixed.
|
||||
Log.w(TAG, e);
|
||||
webSocket.close(1000, "OK");
|
||||
emitter.tryOnError(e);
|
||||
|
||||
Reference in New Issue
Block a user