[skip ci] fix issue with nullable field in Node adapter

This commit is contained in:
Godwin Asuquo 2022-12-12 19:30:48 +01:00
parent f2ea86a713
commit 6c9f9a4d19
3 changed files with 3 additions and 3 deletions

View file

@ -54,7 +54,7 @@ class Node extends HiveObject with Keyable {
bool? useSSL;
@HiveField(5)
bool trusted;
bool? trusted;
bool get isSSL => useSSL ?? false;