Skip to content

Commit

Permalink
Update firestore_collection.gd
Browse files Browse the repository at this point in the history
  • Loading branch information
xzirox authored Dec 20, 2023
1 parent 7b90285 commit 66ec0fe
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 66ec0fe

Please sign in to comment.