From bc366c85e55ed49c3cdf875ef03cbd0ed9573083 Mon Sep 17 00:00:00 2001 From: Stranck Date: Sun, 14 Apr 2024 11:35:41 +0200 Subject: [PATCH] Fix daily people not showing up in the webint --- ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext.py b/ext.py index 1a5f791..35aa170 100644 --- a/ext.py +++ b/ext.py @@ -112,7 +112,7 @@ class Order: self.room_errors = [] self.loadAns() - if(self.bed_in_room < 0): + if(self.bed_in_room < 0 and not self.daily): self.status = "canceled" # Must refer to the previous status assignment def loadAns(self): self.shirt_size = self.ans('shirt_size') -- 2.43.4