summaryrefslogtreecommitdiff
path: root/src/ui
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-12-01 09:06:07 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-12-01 09:06:07 +0200
commit0df97a5c5202bb765959df87861957ca2d4f301d (patch)
treed8e355e9648a8386e377746e8e07751c58e4219a /src/ui
parentde48da0eb43e7b3893dca11d1f50928d5a412c1e (diff)
DocumentWidget: Error page of unknown status code
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/documentwidget.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/documentwidget.c b/src/ui/documentwidget.c
index 1c325206..cca77c15 100644
--- a/src/ui/documentwidget.c
+++ b/src/ui/documentwidget.c
@@ -1195,6 +1195,9 @@ static void checkResponse_DocumentWidget_(iDocumentWidget *d) {
1195 showErrorPage_DocumentWidget_( 1195 showErrorPage_DocumentWidget_(
1196 d, permanentFailure_GmStatusCode, &resp->meta); 1196 d, permanentFailure_GmStatusCode, &resp->meta);
1197 } 1197 }
1198 else {
1199 showErrorPage_DocumentWidget_(d, unknownStatusCode_GmStatusCode, &resp->meta);
1200 }
1198 break; 1201 break;
1199 } 1202 }
1200 } 1203 }