Skip to content

Commit

Permalink
Merge pull request #373 from xzirox/main
Browse files Browse the repository at this point in the history
Fix for #372 delete_document error
  • Loading branch information
WolfgangSenff authored Jan 11, 2024
2 parents 5f2d638 + 66ec0fe commit f44831f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/godot-firebase/firestore/firestore_collection.gd
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ func _on_add_document(document : FirestoreDocument):
func _on_update_document(document : FirestoreDocument):
emit_signal("update_document", document )

func _on_delete_document():
emit_signal("delete_document")
func _on_delete_document(success: bool):
emit_signal("delete_document", success)

func _on_error(code, status, message, task):
emit_signal("error", code, status, message)
Expand Down

0 comments on commit f44831f

Please sign in to comment.