From 97ee07741905442a773221ead784d2d05cf4dc04 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Mon, 9 May 2022 21:46:29 +1000 Subject: [PATCH] Require API version 46 --- lib/api.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api.dart b/lib/api.dart index 861ed820..04377b97 100644 --- a/lib/api.dart +++ b/lib/api.dart @@ -1150,7 +1150,7 @@ class InvenTreeAPI { ); } - bool get supportsSettings => isConnected() && apiVersion >= 45; + bool get supportsSettings => isConnected() && apiVersion >= 46; // Keep a record of which settings we have received from the server Map _globalSettings = {};