You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @ReimarBauer
Can we explicitly check if the string is "True" (case-sensitive or case-insensitive) and then convert it to a boolean, instead of directly converting the value to a boolean? Jst like this
if isinstance(active, bool): self.active = active else: self.active = str(active).strip().lower() == 'true'
On an old database setup I have seen an error on unarchive of operations. This could also been introduced by 02999a0#diff-a79f98f21772ef2875786e134f047c59410460de657ceda7b4829521ec2a87b8
This needs a test
The text was updated successfully, but these errors were encountered: