Skip to content

Commit a603d73

Browse files
committed
fix sign_out signal in Auth
1 parent bbaec50 commit a603d73

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

addons/supabase/Auth/auth.gd

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,11 +332,10 @@ func _on_task_completed(task : AuthTask) -> void:
332332
AuthTask.Task.INVITE:
333333
user_invited.emit()
334334
AuthTask.Task.LOGOUT:
335-
signed_out.emit()
336335
client = null
337336
_auth = ""
338337
_expires_in = 0
339-
338+
signed_out.emit()
340339

341340
# A timer used to listen through TCP on the redirect uri of the request
342341
func _tcp_stream_timer() -> void:

0 commit comments

Comments
 (0)