Skip to content

Commit

Permalink
Merge pull request #3268 from KBVE/patch-zeta-vuplex-reverse-await-11…
Browse files Browse the repository at this point in the history
…-18-2024-1731928217

[CI] Merge patch-zeta-vuplex-reverse-await-11-18-2024-1731928217 into dev
  • Loading branch information
h0lybyte authored Nov 18, 2024
2 parents ea9e108 + 1cdef36 commit e19e980
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions packages/kilonet/kilonet/Utils/VuplexHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,12 @@ public class VuplexHelper : MonoBehaviour
private const string SUPABASE_ANON_KEY =
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.ewogICJyb2xlIjogImFub24iLAogICJpc3MiOiAic3VwYWJhc2UiLAogICJpYXQiOiAxNzI0NTM2ODAwLAogICJleHAiOiAxODgyMzAzMjAwCn0._fmEmblm0afeLoPXxt8wP2mYpa9gzU-ufx3v8oRTFGg";

private void Start()
private async void Start()
{
try
{
await UniTask.WhenAll(
InitializeWebView().Timeout(TimeSpan.FromSeconds(10)),
InitializeSupabaseClientAsync().Timeout(TimeSpan.FromSeconds(10))
);

await InitializeWebView();
await InitializeSupabaseClientAsync();
}
catch (Exception ex)
{
Expand Down

0 comments on commit e19e980

Please sign in to comment.