mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-22 23:17:26 -04:00
gitignore, null Array fix
This commit is contained in:
parent
94497ae901
commit
643f750156
2 changed files with 3 additions and 1 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
.DS_Store
|
||||
.vscode/*
|
|
@ -26,7 +26,7 @@ func _on_search_text_changed(query: String) -> void:
|
|||
await prompt_request(query)
|
||||
clear()
|
||||
|
||||
var prompts: Array = JSON.parse_string(result_str)
|
||||
var prompts = JSON.parse_string(result_str)
|
||||
if prompts == null or prompts.is_empty():
|
||||
return
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue