Skip to content

Commit

Permalink
Merge pull request #352 from NIKHIL0VERMA/4.x
Browse files Browse the repository at this point in the history
Fixed error with OAuth 2 fb login flow
  • Loading branch information
WolfgangSenff authored Jan 13, 2024
2 parents b198bd8 + 43ba257 commit 9313ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/godot-firebase/auth/auth.gd
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ func get_google_auth_manual(provider: AuthProvider = _local_provider) -> void:
func _tcp_stream_timer() -> void:
var peer : StreamPeer = tcp_server.take_connection()
if peer != null:
var raw_result : String = peer.get_utf8_string(400)
var raw_result : String = peer.get_utf8_string(441)
if raw_result != "" and raw_result.begins_with("GET"):
tcp_timer.stop()
remove_child(tcp_timer)
Expand Down

0 comments on commit 9313ef9

Please sign in to comment.