fix: disable ecb again

segfaults often and is difficult to debug (e.g when an instance returns 404). This needs a proper fix before re-enabling.
This commit is contained in:
Evangelos Paterakis 2023-01-11 17:53:01 +02:00
parent e23462a1a0
commit 630fd270da
No known key found for this signature in database
GPG Key ID: FE5185F095BFC8C9
1 changed files with 2 additions and 1 deletions

View File

@ -59,7 +59,8 @@ public class Tooth.Network : GLib.Object {
else if (status == Soup.Status.CANCELLED)
debug ("Message is cancelled. Ignoring callback invocation.");
else
ecb ((int32) status, msg.reason_phrase);
critical (@"Should be ecb: $status $(msg.reason_phrase)");
// ecb ((int32) status, msg.reason_phrase);
});
}