mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-09 14:08:00 -06:00
Added translations, fixed inbox, minor updates to pages
This commit is contained in:
@@ -8,6 +8,6 @@ class PaperlessServerStatisticsModel {
|
||||
});
|
||||
|
||||
PaperlessServerStatisticsModel.fromJson(Map<String, dynamic> json)
|
||||
: documentsTotal = json['documents_total'],
|
||||
documentsInInbox = json['documents_inbox'];
|
||||
: documentsTotal = json['documents_total'] ?? 0,
|
||||
documentsInInbox = json['documents_inbox'] ?? 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user