Prevent "failed to convert null" qt warning

This commit is contained in:
miruka
2019-11-09 13:41:12 -04:00
parent b34387ad79
commit 0aedc1a7d0
2 changed files with 4 additions and 4 deletions

View File

@@ -20,8 +20,8 @@ HBox {
errorMessage.text = ""
let args = [
nameField.text || null,
topicField.text || null,
nameField.text,
topicField.text,
publicCheckBox.checked,
encryptCheckBox.checked,
! blockOtherServersCheckBox.checked,