From f939f24e97a9e6bb1e8f86450433b4bc11777b8e Mon Sep 17 00:00:00 2001 From: Tin Date: Sun, 2 Aug 2026 17:31:15 +0200 Subject: [PATCH 01/31] WIP playback token auth --- .env.example | 43 +- .gitignore | 4 +- .../console-2026-07-29T23-25-52-191Z.log | 3 + .../console-2026-07-29T23-26-11-793Z.log | 4 + .../console-2026-07-29T23-26-43-177Z.log | 5 + .../console-2026-07-29T23-27-59-184Z.log | 10 + .../console-2026-07-29T23-28-49-406Z.log | 7 + .../console-2026-07-29T23-29-36-361Z.log | 168 + .../console-2026-07-29T23-39-50-088Z.log | 11 + .../console-2026-07-29T23-43-30-715Z.log | 6 + .../console-2026-07-29T23-44-10-490Z.log | 2 + .../console-2026-07-29T23-44-25-705Z.log | 20 + .../console-2026-07-29T23-53-06-297Z.log | 61 + .../console-2026-07-30T00-01-42-231Z.log | 14 + .../console-2026-07-30T00-04-59-157Z.log | 27 + .../console-2026-07-30T00-07-32-693Z.log | 224 ++ .../console-2026-07-30T00-37-56-032Z.log | 9 + .../console-2026-07-30T00-39-32-370Z.log | 7 + .../console-2026-07-30T00-40-57-021Z.log | 474 +++ .../console-2026-07-30T01-10-19-952Z.log | 59 + .../console-2026-07-30T01-15-22-946Z.log | 38 + .../console-2026-07-30T01-16-19-638Z.log | 67 + .../console-2026-07-30T01-18-35-162Z.log | 3493 +++++++++++++++++ .../page-2026-07-29T23-25-52-490Z.yml | 56 + .../page-2026-07-29T23-26-12-105Z.yml | 195 + .../page-2026-07-29T23-26-43-617Z.yml | 69 + .../page-2026-07-29T23-27-59-669Z.yml | 71 + .../page-2026-07-29T23-28-15-139Z.yml | 52 + .../page-2026-07-29T23-28-49-819Z.yml | 13 + .../page-2026-07-29T23-43-30-923Z.yml | 216 + .../page-2026-07-29T23-44-10-672Z.yml | 92 + .../page-2026-07-29T23-44-26-019Z.yml | 116 + .../page-2026-07-29T23-53-06-616Z.yml | 302 ++ .../page-2026-07-30T00-01-42-445Z.yml | 302 ++ .../page-2026-07-30T00-04-59-376Z.yml | 302 ++ .../page-2026-07-30T00-07-32-931Z.yml | 303 ++ .../page-2026-07-30T00-37-57-239Z.yml | 303 ++ .../page-2026-07-30T00-39-37-192Z.yml | 303 ++ .../page-2026-07-30T00-41-01-142Z.yml | 303 ++ .../page-2026-07-30T01-10-22-177Z.yml | 318 ++ .../page-2026-07-30T01-15-23-717Z.yml | 333 ++ .../page-2026-07-30T01-16-20-220Z.yml | 333 ++ .../page-2026-07-30T01-18-42-301Z.yml | 344 ++ CLAUDE.md | 54 +- app/Console/Commands/CheckAutoModeShows.php | 115 +- app/Console/Commands/DevStreamKeys.php | 46 + app/Console/Kernel.php | 9 +- app/Enum/AutoscalerAction.php | 10 - app/Enum/PlaybackTokenTypeEnum.php | 38 + .../BroadcastRateLimitChangeEvent.php | 42 - .../Broadcasts/ChatMessagesDeletedEvent.php | 44 + .../Chat/Broadcasts/ChatNoticeEvent.php | 48 + ...Event.php => ChatSettingsUpdatedEvent.php} | 20 +- .../Chat/Broadcasts/ChatSystemEvent.php | 47 - .../Chat/Broadcasts/ChatUserStateEvent.php | 47 + .../Broadcasts/SystemAnnouncementEvent.php | 49 - app/Events/Chat/Commands/SlowModeDisabled.php | 12 - app/Events/Chat/Commands/SlowModeEnabled.php | 12 - app/Events/Chat/DeleteMessagesEvent.php | 16 - app/Events/MessageDeletedEvent.php | 52 - app/Events/SystemMessageEvent.php | 48 - .../InvalidPlaybackTokenException.php | 65 + app/Filament/Pages/Branding.php | 189 + app/Filament/Resources/ServerResource.php | 31 +- .../ServerResource/Pages/ListServers.php | 17 +- app/Filament/Resources/ShowResource.php | 109 +- app/Filament/Resources/SourceResource.php | 57 +- .../SourceResource/Pages/EditSource.php | 27 +- .../Api/ServerProvisionController.php | 33 +- app/Http/Controllers/Auth/LoginController.php | 55 +- .../Controllers/Auth/OidcClientController.php | 96 +- .../Controllers/Chat/ChatUserController.php | 69 + .../Controllers/Chat/ModerationController.php | 203 + app/Http/Controllers/HlsController.php | 76 +- .../Manage/DashboardController.php | 34 + .../Controllers/Manage/ServerController.php | 346 ++ .../Manage/ServerInstallScriptController.php | 148 + .../Manage/ServerProvisionController.php | 74 + .../Controllers/Manage/SettingsController.php | 69 + .../Controllers/Manage/ShowController.php | 411 ++ .../Manage/ShowPlannerController.php | 180 + .../Manage/ShowStatisticsController.php | 172 + .../Controllers/Manage/SourceController.php | 414 ++ .../Manage/TableColumnController.php | 28 + .../Controllers/Manage/UploadController.php | 77 + app/Http/Controllers/RecordingController.php | 114 +- app/Http/Controllers/ScheduleController.php | 90 + app/Http/Controllers/StreamController.php | 304 +- app/Http/Controllers/TestChatController.php | 57 - app/Http/Middleware/Authenticate.php | 6 + app/Http/Middleware/HandleInertiaRequests.php | 29 +- app/Http/Middleware/ShareManageProps.php | 28 + app/Http/Requests/Manage/ServerRequest.php | 84 + app/Http/Requests/Manage/ShowRequest.php | 114 + app/Http/Requests/Manage/SourceRequest.php | 61 + app/Jobs/Server/ScalingJob.php | 80 - .../DeleteMessages/DeleteMessagesListener.php | 36 - .../AnnounceSlowModeDeactivationListener.php | 16 - .../SlowMode/AnnounceSlowModeListener.php | 15 - .../Chat/SlowMode/SlowModeDisableListener.php | 25 - .../Chat/SlowMode/SlowModeEnableListener.php | 25 - app/Models/BrandingSetting.php | 65 + app/Models/ChatBan.php | 53 + app/Models/ChatModerationLog.php | 37 + app/Models/ChatSetting.php | 65 +- app/Models/Message.php | 54 +- app/Models/Server.php | 69 +- app/Models/Show.php | 37 + app/Models/Source.php | 23 +- app/Models/User.php | 73 + app/Policies/ServerPolicy.php | 70 + app/Policies/ShowPolicy.php | 58 + app/Policies/SourcePolicy.php | 58 + app/Providers/AuthServiceProvider.php | 33 +- app/Providers/RouteServiceProvider.php | 5 + app/Services/AutoscalerService.php | 57 - app/Services/BrandingService.php | 135 + app/Services/Chat/ChatModerationService.php | 382 ++ app/Services/Chat/ChatSettingsService.php | 77 + app/Services/Chat/MessagePresenter.php | 116 + app/Services/EmoteService.php | 35 +- app/Services/PlaybackTokenService.php | 245 ++ app/Services/ServerProvisioningService.php | 55 +- app/Services/ShowStatisticsService.php | 48 +- app/Support/ColorRamp.php | 142 + app/Support/Manage/Action.php | 132 + app/Support/Manage/Column.php | 231 ++ app/Support/Manage/Filter.php | 192 + app/Support/Manage/Navigation.php | 129 + app/Support/Manage/Overview.php | 342 ++ app/Support/Manage/Settings.php | 152 + app/Support/Manage/Status.php | 148 + app/Support/Manage/Table.php | 324 ++ app/Support/Manage/Toast.php | 95 + app/Support/PlaybackToken.php | 144 + archive1.png | Bin 0 -> 319379 bytes browse-stage.png | Bin 0 -> 356243 bytes browse2.png | Bin 0 -> 158474 bytes browse3.png | Bin 0 -> 292818 bytes browse4.png | Bin 0 -> 297125 bytes browse5.png | Bin 0 -> 340152 bytes browse6.png | Bin 0 -> 335856 bytes chat-excerpt.png | Bin 0 -> 324861 bytes chat-fill.png | Bin 0 -> 291160 bytes chat-fill2.png | Bin 0 -> 222845 bytes composer.json | 1 - composer.lock | 141 +- config/auth.php | 15 + config/branding.php | 74 + config/chat.php | 35 +- config/database.php | 2 +- config/manage.php | 84 + config/settings.php | 193 + config/stream.php | 37 +- database/factories/ServerFactory.php | 81 + ...8_31_add_error_status_to_sources_table.php | 18 +- .../2026_07_29_233211_create_jobs_table.php | 32 + ..._235000_create_branding_settings_table.php | 32 + ...120000_add_auto_stop_at_to_shows_table.php | 33 + .../2026_07_30_150000_revamp_chat_system.php | 76 + database/seeders/DevStreamChannelsSeeder.php | 100 + .../seeders/LocalDevelopmentServersSeeder.php | 9 +- .../seeders/LocalDevelopmentSourceSeeder.php | 32 +- database/seeders/ShowSeeder.php | 205 +- docker-compose.dev.yml | 167 + docker-compose.yml | 237 -- docker/8.4/Dockerfile | 71 - docker/8.4/php.ini | 5 - docker/8.4/start-container | 26 - docker/8.4/supervisord.conf | 42 - docker/dev/app-bridge.conf | 34 + docker/dev/edge-Caddyfile | 17 + docker/dev/edge-nginx.conf | 176 + docker/dev/origin-Caddyfile | 32 + docker/dev/origin-nginx.conf | 102 + docker/dev/origin-srs.conf | 81 + docker/dev/publish.sh | 67 + docker/edge-nginx/Dockerfile | 18 + docker/edge-nginx/hls-auth.js | 283 ++ docker/edge-nginx/nginx.conf | 31 +- docs/admin/auto-mode.md | 88 + docs/admin/current-filament-features.md | 269 ++ docs/admin/parity-checklist.md | 208 + docs/admin/rebuild-plan.md | 405 ++ docs/admin/remaining-modules.md | 335 ++ docs/dev-stack.md | 109 + docs/streaming-auth-redesign.md | 201 + install.sh | 76 +- login-dots.png | Bin 0 -> 134352 bytes package-lock.json | 324 +- package.json | 6 +- resources/css/app.css | 78 +- resources/js/Components/Chat/ChatBadges.vue | 26 + resources/js/Components/Chat/ChatInput.vue | 306 ++ resources/js/Components/Chat/ChatMessage.vue | 195 + resources/js/Components/Chat/ChatPanel.vue | 331 ++ resources/js/Components/Chat/EmotePicker.vue | 102 + .../js/Components/Chat/ModToolsPanel.vue | 216 + resources/js/Components/Chat/UserCard.vue | 170 + resources/js/Components/Container.vue | 2 +- .../js/Components/Livestream/ChatBox.vue | 557 --- .../Components/Livestream/ChatMessageBox.vue | 322 -- .../Livestream/CommandSuggestion.vue | 155 - .../Livestream/KeyboardShortcutsHelp.vue | 270 -- .../Livestream/RateLimitInfoBox.vue | 57 - .../js/Components/Livestream/StreamPlayer.vue | 149 +- .../Livestream/StreamStatsOverlay.vue | 190 +- .../js/Components/Livestream/UserBadge.vue | 56 - .../Components/Livestream/VideoJsPlayer.vue | 1100 ------ .../js/Components/LoginScreenWelcome.vue | 5 +- resources/js/Components/Logo.vue | 24 +- .../js/Components/Manage/ActionButton.vue | 173 + resources/js/Components/Manage/ChartArea.vue | 169 + .../js/Components/Manage/CheckboxList.vue | 49 + resources/js/Components/Manage/CodeBlock.vue | 63 + .../js/Components/Manage/CopyableText.vue | 54 + resources/js/Components/Manage/DataTable.vue | 336 ++ .../js/Components/Manage/FileUploadField.vue | 95 + resources/js/Components/Manage/FilterBar.vue | 159 + .../js/Components/Manage/FormActions.vue | 29 + resources/js/Components/Manage/FormField.vue | 102 + .../js/Components/Manage/FormSection.vue | 55 + resources/js/Components/Manage/ManageIcon.vue | 134 + .../js/Components/Manage/ManageSidebar.vue | 69 + .../Components/Manage/ManageStatusStrip.vue | 95 + resources/js/Components/Manage/PageHeader.vue | 24 + resources/js/Components/Manage/Pagination.vue | 73 + .../js/Components/Manage/PlannerTrack.vue | 320 ++ .../js/Components/Manage/ScheduleRow.vue | 122 + .../Components/Manage/ShowStatusControl.vue | 32 + resources/js/Components/Manage/StatCard.vue | 27 + .../js/Components/Manage/StatusBadge.vue | 25 + resources/js/Components/Manage/ToastHost.vue | 40 + resources/js/Components/Manage/plannerTime.js | 139 + resources/js/Components/Manage/tones.js | 42 + .../js/Components/Manage/useTableQuery.js | 74 + resources/js/Components/Manage/useToasts.js | 46 + resources/js/Components/NavLink.vue | 9 +- resources/js/Components/Player/EfPlayer.vue | 269 ++ .../Components/Recordings/RecordingTile.vue | 18 +- resources/js/Components/Shows/ChatExcerpt.vue | 132 + resources/js/Components/Shows/ShowTile.vue | 90 +- resources/js/Components/Shows/StageHero.vue | 333 ++ resources/js/Components/TilePlaceholder.vue | 53 + resources/js/Layouts/AuthenticatedLayout.vue | 104 +- resources/js/Layouts/GuestLayout.vue | 160 +- resources/js/Layouts/ManageLayout.vue | 38 + resources/js/Pages/Archive/Index.vue | 224 ++ resources/js/Pages/Archive/Year.vue | 166 + resources/js/Pages/Auth/Login.vue | 72 +- resources/js/Pages/ChatPopout.vue | 18 +- resources/js/Pages/Emotes/Index.vue | 201 + resources/js/Pages/Manage/Dashboard.vue | 228 ++ resources/js/Pages/Manage/Servers/Form.vue | 194 + resources/js/Pages/Manage/Servers/Index.vue | 35 + .../js/Pages/Manage/Servers/InstallScript.vue | 79 + resources/js/Pages/Manage/Settings.vue | 166 + resources/js/Pages/Manage/Shows/Form.vue | 241 ++ resources/js/Pages/Manage/Shows/Index.vue | 34 + resources/js/Pages/Manage/Shows/Planner.vue | 209 + .../js/Pages/Manage/Shows/Statistics.vue | 169 + resources/js/Pages/Manage/Sources/Form.vue | 198 + resources/js/Pages/Manage/Sources/Index.vue | 33 + resources/js/Pages/NoTicket.vue | 4 +- resources/js/Pages/RecordingPlayer.vue | 1007 +---- resources/js/Pages/Recordings.vue | 195 - resources/js/Pages/Schedule.vue | 299 ++ resources/js/Pages/ShowPlayer.vue | 29 +- resources/js/Pages/ShowsGrid.vue | 490 +-- resources/js/Pages/TestChat.vue | 78 - resources/js/app.js | 13 +- resources/js/composables/useChat.js | 307 ++ resources/js/composables/useChatTokens.js | 112 + resources/js/composables/useNow.js | 34 + resources/views/app.blade.php | 15 +- .../views/filament/pages/branding.blade.php | 10 + .../edge/docker-compose.blade.php | 18 +- .../edge/nginx-config.blade.php | 31 +- .../install-script.blade.php | 26 +- routes/manage.php | 102 + routes/web.php | 36 +- schedule.png | Bin 0 -> 58494 bytes schedule2.png | Bin 0 -> 64099 bytes schedule3.png | Bin 0 -> 50970 bytes schedule4.png | Bin 0 -> 76409 bytes scripts/dev-stack.sh | 102 + scripts/dev-streams.sh | 103 + scripts/load-test.sh | 91 + stack-live.png | Bin 0 -> 335715 bytes stack-live2.png | Bin 0 -> 311922 bytes tests/Concerns/CreatesManageUsers.php | 51 + tests/Feature/Auth/OidcCallbackTest.php | 111 + .../Commands/CheckAutoModeShowsTest.php | 128 +- tests/Feature/EdgeTokenEnforcementTest.php | 184 + tests/Feature/Filament/AdminPanelTest.php | 45 +- .../Filament/ShowControlColumnTest.php | 81 + tests/Feature/Manage/AccessTest.php | 148 + tests/Feature/Manage/DashboardTest.php | 177 + tests/Feature/Manage/ServersTest.php | 596 +++ tests/Feature/Manage/SettingsTest.php | 187 + tests/Feature/Manage/ShowPlannerTest.php | 340 ++ tests/Feature/Manage/ShowsTest.php | 775 ++++ tests/Feature/Manage/SourcesTest.php | 506 +++ tests/Feature/Manage/UploadTest.php | 175 + tests/Feature/ScheduleTest.php | 116 + tests/Unit/Models/SourceSlugTest.php | 50 + .../Services/PlaybackTokenServiceTest.php | 254 ++ vite.config.js | 6 + 308 files changed, 33137 insertions(+), 6571 deletions(-) create mode 100644 .playwright-mcp/console-2026-07-29T23-25-52-191Z.log create mode 100644 .playwright-mcp/console-2026-07-29T23-26-11-793Z.log create mode 100644 .playwright-mcp/console-2026-07-29T23-26-43-177Z.log create mode 100644 .playwright-mcp/console-2026-07-29T23-27-59-184Z.log create mode 100644 .playwright-mcp/console-2026-07-29T23-28-49-406Z.log create mode 100644 .playwright-mcp/console-2026-07-29T23-29-36-361Z.log create mode 100644 .playwright-mcp/console-2026-07-29T23-39-50-088Z.log create mode 100644 .playwright-mcp/console-2026-07-29T23-43-30-715Z.log create mode 100644 .playwright-mcp/console-2026-07-29T23-44-10-490Z.log create mode 100644 .playwright-mcp/console-2026-07-29T23-44-25-705Z.log create mode 100644 .playwright-mcp/console-2026-07-29T23-53-06-297Z.log create mode 100644 .playwright-mcp/console-2026-07-30T00-01-42-231Z.log create mode 100644 .playwright-mcp/console-2026-07-30T00-04-59-157Z.log create mode 100644 .playwright-mcp/console-2026-07-30T00-07-32-693Z.log create mode 100644 .playwright-mcp/console-2026-07-30T00-37-56-032Z.log create mode 100644 .playwright-mcp/console-2026-07-30T00-39-32-370Z.log create mode 100644 .playwright-mcp/console-2026-07-30T00-40-57-021Z.log create mode 100644 .playwright-mcp/console-2026-07-30T01-10-19-952Z.log create mode 100644 .playwright-mcp/console-2026-07-30T01-15-22-946Z.log create mode 100644 .playwright-mcp/console-2026-07-30T01-16-19-638Z.log create mode 100644 .playwright-mcp/console-2026-07-30T01-18-35-162Z.log create mode 100644 .playwright-mcp/page-2026-07-29T23-25-52-490Z.yml create mode 100644 .playwright-mcp/page-2026-07-29T23-26-12-105Z.yml create mode 100644 .playwright-mcp/page-2026-07-29T23-26-43-617Z.yml create mode 100644 .playwright-mcp/page-2026-07-29T23-27-59-669Z.yml create mode 100644 .playwright-mcp/page-2026-07-29T23-28-15-139Z.yml create mode 100644 .playwright-mcp/page-2026-07-29T23-28-49-819Z.yml create mode 100644 .playwright-mcp/page-2026-07-29T23-43-30-923Z.yml create mode 100644 .playwright-mcp/page-2026-07-29T23-44-10-672Z.yml create mode 100644 .playwright-mcp/page-2026-07-29T23-44-26-019Z.yml create mode 100644 .playwright-mcp/page-2026-07-29T23-53-06-616Z.yml create mode 100644 .playwright-mcp/page-2026-07-30T00-01-42-445Z.yml create mode 100644 .playwright-mcp/page-2026-07-30T00-04-59-376Z.yml create mode 100644 .playwright-mcp/page-2026-07-30T00-07-32-931Z.yml create mode 100644 .playwright-mcp/page-2026-07-30T00-37-57-239Z.yml create mode 100644 .playwright-mcp/page-2026-07-30T00-39-37-192Z.yml create mode 100644 .playwright-mcp/page-2026-07-30T00-41-01-142Z.yml create mode 100644 .playwright-mcp/page-2026-07-30T01-10-22-177Z.yml create mode 100644 .playwright-mcp/page-2026-07-30T01-15-23-717Z.yml create mode 100644 .playwright-mcp/page-2026-07-30T01-16-20-220Z.yml create mode 100644 .playwright-mcp/page-2026-07-30T01-18-42-301Z.yml create mode 100644 app/Console/Commands/DevStreamKeys.php delete mode 100644 app/Enum/AutoscalerAction.php create mode 100644 app/Enum/PlaybackTokenTypeEnum.php delete mode 100644 app/Events/Chat/Broadcasts/BroadcastRateLimitChangeEvent.php create mode 100644 app/Events/Chat/Broadcasts/ChatMessagesDeletedEvent.php create mode 100644 app/Events/Chat/Broadcasts/ChatNoticeEvent.php rename app/Events/Chat/Broadcasts/{BroadcastMessageDeletionIdsEvent.php => ChatSettingsUpdatedEvent.php} (53%) delete mode 100644 app/Events/Chat/Broadcasts/ChatSystemEvent.php create mode 100644 app/Events/Chat/Broadcasts/ChatUserStateEvent.php delete mode 100644 app/Events/Chat/Broadcasts/SystemAnnouncementEvent.php delete mode 100644 app/Events/Chat/Commands/SlowModeDisabled.php delete mode 100644 app/Events/Chat/Commands/SlowModeEnabled.php delete mode 100644 app/Events/Chat/DeleteMessagesEvent.php delete mode 100644 app/Events/MessageDeletedEvent.php delete mode 100644 app/Events/SystemMessageEvent.php create mode 100644 app/Exceptions/InvalidPlaybackTokenException.php create mode 100644 app/Filament/Pages/Branding.php create mode 100644 app/Http/Controllers/Chat/ChatUserController.php create mode 100644 app/Http/Controllers/Chat/ModerationController.php create mode 100644 app/Http/Controllers/Manage/DashboardController.php create mode 100644 app/Http/Controllers/Manage/ServerController.php create mode 100644 app/Http/Controllers/Manage/ServerInstallScriptController.php create mode 100644 app/Http/Controllers/Manage/ServerProvisionController.php create mode 100644 app/Http/Controllers/Manage/SettingsController.php create mode 100644 app/Http/Controllers/Manage/ShowController.php create mode 100644 app/Http/Controllers/Manage/ShowPlannerController.php create mode 100644 app/Http/Controllers/Manage/ShowStatisticsController.php create mode 100644 app/Http/Controllers/Manage/SourceController.php create mode 100644 app/Http/Controllers/Manage/TableColumnController.php create mode 100644 app/Http/Controllers/Manage/UploadController.php create mode 100644 app/Http/Controllers/ScheduleController.php delete mode 100644 app/Http/Controllers/TestChatController.php create mode 100644 app/Http/Middleware/ShareManageProps.php create mode 100644 app/Http/Requests/Manage/ServerRequest.php create mode 100644 app/Http/Requests/Manage/ShowRequest.php create mode 100644 app/Http/Requests/Manage/SourceRequest.php delete mode 100644 app/Jobs/Server/ScalingJob.php delete mode 100644 app/Listeners/Chat/DeleteMessages/DeleteMessagesListener.php delete mode 100644 app/Listeners/Chat/SlowMode/AnnounceSlowModeDeactivationListener.php delete mode 100644 app/Listeners/Chat/SlowMode/AnnounceSlowModeListener.php delete mode 100644 app/Listeners/Chat/SlowMode/SlowModeDisableListener.php delete mode 100644 app/Listeners/Chat/SlowMode/SlowModeEnableListener.php create mode 100644 app/Models/BrandingSetting.php create mode 100644 app/Models/ChatBan.php create mode 100644 app/Models/ChatModerationLog.php create mode 100644 app/Policies/ServerPolicy.php create mode 100644 app/Policies/ShowPolicy.php create mode 100644 app/Policies/SourcePolicy.php delete mode 100644 app/Services/AutoscalerService.php create mode 100644 app/Services/BrandingService.php create mode 100644 app/Services/Chat/ChatModerationService.php create mode 100644 app/Services/Chat/ChatSettingsService.php create mode 100644 app/Services/Chat/MessagePresenter.php create mode 100644 app/Services/PlaybackTokenService.php create mode 100644 app/Support/ColorRamp.php create mode 100644 app/Support/Manage/Action.php create mode 100644 app/Support/Manage/Column.php create mode 100644 app/Support/Manage/Filter.php create mode 100644 app/Support/Manage/Navigation.php create mode 100644 app/Support/Manage/Overview.php create mode 100644 app/Support/Manage/Settings.php create mode 100644 app/Support/Manage/Status.php create mode 100644 app/Support/Manage/Table.php create mode 100644 app/Support/Manage/Toast.php create mode 100644 app/Support/PlaybackToken.php create mode 100644 archive1.png create mode 100644 browse-stage.png create mode 100644 browse2.png create mode 100644 browse3.png create mode 100644 browse4.png create mode 100644 browse5.png create mode 100644 browse6.png create mode 100644 chat-excerpt.png create mode 100644 chat-fill.png create mode 100644 chat-fill2.png create mode 100644 config/branding.php create mode 100644 config/manage.php create mode 100644 config/settings.php create mode 100644 database/factories/ServerFactory.php create mode 100644 database/migrations/2026_07_29_233211_create_jobs_table.php create mode 100644 database/migrations/2026_07_29_235000_create_branding_settings_table.php create mode 100644 database/migrations/2026_07_30_120000_add_auto_stop_at_to_shows_table.php create mode 100644 database/migrations/2026_07_30_150000_revamp_chat_system.php create mode 100644 database/seeders/DevStreamChannelsSeeder.php create mode 100644 docker-compose.dev.yml delete mode 100644 docker-compose.yml delete mode 100644 docker/8.4/Dockerfile delete mode 100644 docker/8.4/php.ini delete mode 100644 docker/8.4/start-container delete mode 100644 docker/8.4/supervisord.conf create mode 100644 docker/dev/app-bridge.conf create mode 100644 docker/dev/edge-Caddyfile create mode 100644 docker/dev/edge-nginx.conf create mode 100644 docker/dev/origin-Caddyfile create mode 100644 docker/dev/origin-nginx.conf create mode 100644 docker/dev/origin-srs.conf create mode 100755 docker/dev/publish.sh create mode 100644 docker/edge-nginx/Dockerfile create mode 100644 docker/edge-nginx/hls-auth.js create mode 100644 docs/admin/auto-mode.md create mode 100644 docs/admin/current-filament-features.md create mode 100644 docs/admin/parity-checklist.md create mode 100644 docs/admin/rebuild-plan.md create mode 100644 docs/admin/remaining-modules.md create mode 100644 docs/dev-stack.md create mode 100644 docs/streaming-auth-redesign.md create mode 100644 login-dots.png create mode 100644 resources/js/Components/Chat/ChatBadges.vue create mode 100644 resources/js/Components/Chat/ChatInput.vue create mode 100644 resources/js/Components/Chat/ChatMessage.vue create mode 100644 resources/js/Components/Chat/ChatPanel.vue create mode 100644 resources/js/Components/Chat/EmotePicker.vue create mode 100644 resources/js/Components/Chat/ModToolsPanel.vue create mode 100644 resources/js/Components/Chat/UserCard.vue delete mode 100644 resources/js/Components/Livestream/ChatBox.vue delete mode 100644 resources/js/Components/Livestream/ChatMessageBox.vue delete mode 100644 resources/js/Components/Livestream/CommandSuggestion.vue delete mode 100644 resources/js/Components/Livestream/KeyboardShortcutsHelp.vue delete mode 100644 resources/js/Components/Livestream/RateLimitInfoBox.vue delete mode 100644 resources/js/Components/Livestream/UserBadge.vue delete mode 100644 resources/js/Components/Livestream/VideoJsPlayer.vue create mode 100644 resources/js/Components/Manage/ActionButton.vue create mode 100644 resources/js/Components/Manage/ChartArea.vue create mode 100644 resources/js/Components/Manage/CheckboxList.vue create mode 100644 resources/js/Components/Manage/CodeBlock.vue create mode 100644 resources/js/Components/Manage/CopyableText.vue create mode 100644 resources/js/Components/Manage/DataTable.vue create mode 100644 resources/js/Components/Manage/FileUploadField.vue create mode 100644 resources/js/Components/Manage/FilterBar.vue create mode 100644 resources/js/Components/Manage/FormActions.vue create mode 100644 resources/js/Components/Manage/FormField.vue create mode 100644 resources/js/Components/Manage/FormSection.vue create mode 100644 resources/js/Components/Manage/ManageIcon.vue create mode 100644 resources/js/Components/Manage/ManageSidebar.vue create mode 100644 resources/js/Components/Manage/ManageStatusStrip.vue create mode 100644 resources/js/Components/Manage/PageHeader.vue create mode 100644 resources/js/Components/Manage/Pagination.vue create mode 100644 resources/js/Components/Manage/PlannerTrack.vue create mode 100644 resources/js/Components/Manage/ScheduleRow.vue create mode 100644 resources/js/Components/Manage/ShowStatusControl.vue create mode 100644 resources/js/Components/Manage/StatCard.vue create mode 100644 resources/js/Components/Manage/StatusBadge.vue create mode 100644 resources/js/Components/Manage/ToastHost.vue create mode 100644 resources/js/Components/Manage/plannerTime.js create mode 100644 resources/js/Components/Manage/tones.js create mode 100644 resources/js/Components/Manage/useTableQuery.js create mode 100644 resources/js/Components/Manage/useToasts.js create mode 100644 resources/js/Components/Player/EfPlayer.vue create mode 100644 resources/js/Components/Shows/ChatExcerpt.vue create mode 100644 resources/js/Components/Shows/StageHero.vue create mode 100644 resources/js/Components/TilePlaceholder.vue create mode 100644 resources/js/Layouts/ManageLayout.vue create mode 100644 resources/js/Pages/Archive/Index.vue create mode 100644 resources/js/Pages/Archive/Year.vue create mode 100644 resources/js/Pages/Emotes/Index.vue create mode 100644 resources/js/Pages/Manage/Dashboard.vue create mode 100644 resources/js/Pages/Manage/Servers/Form.vue create mode 100644 resources/js/Pages/Manage/Servers/Index.vue create mode 100644 resources/js/Pages/Manage/Servers/InstallScript.vue create mode 100644 resources/js/Pages/Manage/Settings.vue create mode 100644 resources/js/Pages/Manage/Shows/Form.vue create mode 100644 resources/js/Pages/Manage/Shows/Index.vue create mode 100644 resources/js/Pages/Manage/Shows/Planner.vue create mode 100644 resources/js/Pages/Manage/Shows/Statistics.vue create mode 100644 resources/js/Pages/Manage/Sources/Form.vue create mode 100644 resources/js/Pages/Manage/Sources/Index.vue delete mode 100644 resources/js/Pages/Recordings.vue create mode 100644 resources/js/Pages/Schedule.vue delete mode 100644 resources/js/Pages/TestChat.vue create mode 100644 resources/js/composables/useChat.js create mode 100644 resources/js/composables/useChatTokens.js create mode 100644 resources/js/composables/useNow.js create mode 100644 resources/views/filament/pages/branding.blade.php create mode 100644 routes/manage.php create mode 100644 schedule.png create mode 100644 schedule2.png create mode 100644 schedule3.png create mode 100644 schedule4.png create mode 100755 scripts/dev-stack.sh create mode 100755 scripts/dev-streams.sh create mode 100755 scripts/load-test.sh create mode 100644 stack-live.png create mode 100644 stack-live2.png create mode 100644 tests/Concerns/CreatesManageUsers.php create mode 100644 tests/Feature/Auth/OidcCallbackTest.php create mode 100644 tests/Feature/EdgeTokenEnforcementTest.php create mode 100644 tests/Feature/Filament/ShowControlColumnTest.php create mode 100644 tests/Feature/Manage/AccessTest.php create mode 100644 tests/Feature/Manage/DashboardTest.php create mode 100644 tests/Feature/Manage/ServersTest.php create mode 100644 tests/Feature/Manage/SettingsTest.php create mode 100644 tests/Feature/Manage/ShowPlannerTest.php create mode 100644 tests/Feature/Manage/ShowsTest.php create mode 100644 tests/Feature/Manage/SourcesTest.php create mode 100644 tests/Feature/Manage/UploadTest.php create mode 100644 tests/Feature/ScheduleTest.php create mode 100644 tests/Unit/Models/SourceSlugTest.php create mode 100644 tests/Unit/Services/PlaybackTokenServiceTest.php diff --git a/.env.example b/.env.example index e12cf71..56804cc 100644 --- a/.env.example +++ b/.env.example @@ -2,35 +2,37 @@ APP_NAME=Laravel APP_ENV=local APP_KEY= APP_DEBUG=true -APP_URL=http://localhost +APP_URL=http://streaming.test LOG_CHANNEL=stack LOG_DEPRECATIONS_CHANNEL=null LOG_LEVEL=debug -DB_CONNECTION=mysql +DB_CONNECTION=pgsql DB_HOST=127.0.0.1 -DB_PORT=3306 -DB_DATABASE=laravel -DB_USERNAME=root +DB_PORT=5432 +DB_DATABASE=ef_streaming +DB_USERNAME=postgres DB_PASSWORD= BROADCAST_DRIVER=reverb CACHE_DRIVER=file FILESYSTEM_DISK=local -QUEUE_CONNECTION=sync +QUEUE_CONNECTION=database SESSION_DRIVER=file -SESSION_LIFETIME=120 - -MEMCACHED_HOST=127.0.0.1 +# 4 weeks, in minutes. Matches AUTH_REMEMBER_LIFETIME so attendees stay signed in. +SESSION_LIFETIME=40320 +AUTH_REMEMBER_LIFETIME=40320 +# Valkey/Redis (production uses this for cache, queue via Horizon, and Reverb scaling) +REDIS_CLIENT=phpredis REDIS_HOST=127.0.0.1 -REDIS_PASSWORD=null REDIS_PORT=6379 +REDIS_PASSWORD=null MAIL_MAILER=smtp -MAIL_HOST=mailpit -MAIL_PORT=1025 +MAIL_HOST=127.0.0.1 +MAIL_PORT=2525 MAIL_USERNAME=null MAIL_PASSWORD=null MAIL_ENCRYPTION=null @@ -57,6 +59,19 @@ DVR_AWS_URL=https://s3.your-server.com/recording # Generate a secure random string for production STREAM_SYSTEM_STREAMKEY= +# Playback token secrets, shared with every edge server so it can verify tokens +# locally without calling back into Laravel. Two separate secrets so a leak of +# the viewer secret cannot mint long-lived embed keys. +# Generate with: openssl rand -hex 32 +HLS_VIEWER_SECRET= +HLS_EMBED_SECRET= + +# Viewer token lifetime in seconds, the grace window edges allow past expiry, +# and how long before expiry a fresh token is pushed to the player. +HLS_TOKEN_TTL=900 +HLS_TOKEN_LEEWAY=60 +HLS_TOKEN_REFRESH_MARGIN=180 + # Local streaming server override for specific IP subnets # When client IPs match these subnets, force use of LOCAL_STREAMING_HOSTNAME server # Use CIDR notation, e.g., 192.168.1.0/24 for IPv4, 2001:db8::/64 for IPv6 @@ -68,11 +83,11 @@ REVERB_APP_ID=my-app-id REVERB_APP_KEY=my-app-key REVERB_APP_SECRET=my-app-secret REVERB_HOST=localhost -REVERB_PORT=8080 +REVERB_PORT=8081 REVERB_SCHEME=http REVERB_SERVER_HOST=0.0.0.0 -REVERB_SERVER_PORT=8080 +REVERB_SERVER_PORT=8081 REVERB_MAX_REQUEST_SIZE=250000 REVERB_APP_MAX_MESSAGE_SIZE=100000 REVERB_SCALING_ENABLED=false diff --git a/.gitignore b/.gitignore index 37b6091..77389ef 100644 --- a/.gitignore +++ b/.gitignore @@ -25,4 +25,6 @@ frankenphp frankenphp-worker.php # Logs -logs \ No newline at end of file +logs +# Local dev stream loops (scripts/dev-streams.sh) +/public/dev-streams diff --git a/.playwright-mcp/console-2026-07-29T23-25-52-191Z.log b/.playwright-mcp/console-2026-07-29T23-25-52-191Z.log new file mode 100644 index 0000000..3ee19f4 --- /dev/null +++ b/.playwright-mcp/console-2026-07-29T23-25-52-191Z.log @@ -0,0 +1,3 @@ +[ 243ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 15225ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 15387ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-29T23-26-11-793Z.log b/.playwright-mcp/console-2026-07-29T23-26-11-793Z.log new file mode 100644 index 0000000..4cd0f0b --- /dev/null +++ b/.playwright-mcp/console-2026-07-29T23-26-11-793Z.log @@ -0,0 +1,4 @@ +[ 191ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 484ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 1546ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 15189ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-29T23-26-43-177Z.log b/.playwright-mcp/console-2026-07-29T23-26-43-177Z.log new file mode 100644 index 0000000..b4a062b --- /dev/null +++ b/.playwright-mcp/console-2026-07-29T23-26-43-177Z.log @@ -0,0 +1,5 @@ +[ 392ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 15394ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 22119ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 37109ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 67109ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-29T23-27-59-184Z.log b/.playwright-mcp/console-2026-07-29T23-27-59-184Z.log new file mode 100644 index 0000000..74e3854 --- /dev/null +++ b/.playwright-mcp/console-2026-07-29T23-27-59-184Z.log @@ -0,0 +1,10 @@ +[ 462ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 15465ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 39385ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://[::1]:5173/resources/js/Layouts/AuthenticatedLayout.vue?t=1785367718558&vue&type=style&index=0&lang.css:0 +[ 39385ms] [INFO] [hmr] /resources/js/Layouts/AuthenticatedLayout.vue?vue&type=style&index=0&lang.css failed to apply HMR as it's within a circular import. Reloading page to reset the execution order. To debug and break the circular import, you can run `vite --debug hmr` to log the circular dependency path if a file change triggered it. @ http://[::1]:5173/@vite/client:898 +[ 39385ms] [ERROR] [vite] Failed to reload /resources/js/Layouts/AuthenticatedLayout.vue?vue&type=style&index=0&lang.css. This could be due to syntax errors or importing non-existent modules. (see errors above) @ http://[::1]:5173/@vite/client:881 +[ 39387ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://[::1]:5173/resources/js/Layouts/AuthenticatedLayout.vue?t=1785367718558:0 +[ 39387ms] [ERROR] [vite] Failed to reload /resources/js/Layouts/AuthenticatedLayout.vue. This could be due to syntax errors or importing non-existent modules. (see errors above) @ http://[::1]:5173/@vite/client:881 +[ 39669ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://[::1]:5173/resources/js/Layouts/AuthenticatedLayout.vue?t=1785367718558:0 +[ 39686ms] Failed to fetch dynamically imported module: http://[::1]:5173/resources/js/Pages/Schedule.vue?t=1785367718558 +[ 39692ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-29T23-28-49-406Z.log b/.playwright-mcp/console-2026-07-29T23-28-49-406Z.log new file mode 100644 index 0000000..a0d6de5 --- /dev/null +++ b/.playwright-mcp/console-2026-07-29T23-28-49-406Z.log @@ -0,0 +1,7 @@ +[ 378ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://[::1]:5173/resources/js/Layouts/AuthenticatedLayout.vue?t=1785367725782:0 +[ 402ms] Failed to fetch dynamically imported module: http://[::1]:5173/resources/js/Pages/ShowsGrid.vue?t=1785367725782 +[ 408ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 8679ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 8796ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 9870ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 23678ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-29T23-29-36-361Z.log b/.playwright-mcp/console-2026-07-29T23-29-36-361Z.log new file mode 100644 index 0000000..7991825 --- /dev/null +++ b/.playwright-mcp/console-2026-07-29T23-29-36-361Z.log @@ -0,0 +1,168 @@ +[ 93776ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 93777ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 93778ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 93779ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 93779ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 93780ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 93780ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 93793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 93938ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 95003ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 108766ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 138765ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 139782ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 139783ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 139784ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 139785ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 139786ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 139786ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 139786ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 139978ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 140052ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 140053ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 140053ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 140054ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 140055ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 140056ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 140056ms] [WARNING] [Vue warn]: Failed to resolve component: TilePlaceholder +If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. + at + at + at + at ... > + at @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:2374 +[ 140067ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 140113ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 141177ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 155050ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 185048ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 209505ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 210572ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 210968ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 211072ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 212138ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 225941ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 255939ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 315939ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 375941ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 435943ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-29T23-39-50-088Z.log b/.playwright-mcp/console-2026-07-29T23-39-50-088Z.log new file mode 100644 index 0000000..6f802c5 --- /dev/null +++ b/.playwright-mcp/console-2026-07-29T23-39-50-088Z.log @@ -0,0 +1,11 @@ +[ 199310ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 199925ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 200996ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 202490ms] [LOG] [vite] server connection lost. Polling for restart... @ http://[::1]:5173/@vite/client:963 +[ 202491ms] [ERROR] WebSocket connection to 'ws://[::1]:5173/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://[::1]:5173/@vite/client:1034 +[ 203493ms] [ERROR] WebSocket connection to 'ws://[::1]:5173/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://[::1]:5173/@vite/client:1034 +[ 204496ms] [ERROR] WebSocket connection to 'ws://[::1]:5173/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://[::1]:5173/@vite/client:1034 +[ 205498ms] [ERROR] WebSocket connection to 'ws://[::1]:5173/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://[::1]:5173/@vite/client:1034 +[ 207150ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 207205ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 208265ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 diff --git a/.playwright-mcp/console-2026-07-29T23-43-30-715Z.log b/.playwright-mcp/console-2026-07-29T23-43-30-715Z.log new file mode 100644 index 0000000..98277e8 --- /dev/null +++ b/.playwright-mcp/console-2026-07-29T23-43-30-715Z.log @@ -0,0 +1,6 @@ +[ 178ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 255ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 1325ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 15158ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 35090ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 +[ 36151ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/test-stream/master.m3u8:0 diff --git a/.playwright-mcp/console-2026-07-29T23-44-10-490Z.log b/.playwright-mcp/console-2026-07-29T23-44-10-490Z.log new file mode 100644 index 0000000..c4a8a7e --- /dev/null +++ b/.playwright-mcp/console-2026-07-29T23-44-10-490Z.log @@ -0,0 +1,2 @@ +[ 154ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 15146ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-29T23-44-25-705Z.log b/.playwright-mcp/console-2026-07-29T23-44-25-705Z.log new file mode 100644 index 0000000..de27fb6 --- /dev/null +++ b/.playwright-mcp/console-2026-07-29T23-44-25-705Z.log @@ -0,0 +1,20 @@ +[ 280ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 15263ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 45266ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 74604ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 82876ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 97860ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 127860ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 187864ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 189837ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 204832ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 216098ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 231086ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 261088ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 321087ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 381089ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 441092ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 450538ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 465517ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 476664ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 491651ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-29T23-53-06-297Z.log b/.playwright-mcp/console-2026-07-29T23-53-06-297Z.log new file mode 100644 index 0000000..416d3f1 --- /dev/null +++ b/.playwright-mcp/console-2026-07-29T23-53-06-297Z.log @@ -0,0 +1,61 @@ +[ 254ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 356ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1417ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 15258ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 39668ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 39905ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 40987ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 54644ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 84651ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 144645ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 204645ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 264658ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 274241ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/:0 +[ 274280ms] [INFO] %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold @ https://streaming.test/:131 +[ 274290ms] [LOG] {report: Object, shareableReport: Object, config: Object, solutions: Array(1), updateConfigEndpoint: /_ignition/update-config} {frames: Array(38), context_items: Object, custom_context_items: Array(0), type: web, entry_point: https://streaming.test/} @ https://streaming.test/:136 +[ 277732ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/:0 +[ 277747ms] [INFO] %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold @ https://streaming.test/:131 +[ 277750ms] [LOG] {report: Object, shareableReport: Object, config: Object, solutions: Array(1), updateConfigEndpoint: /_ignition/update-config} {frames: Array(38), context_items: Object, custom_context_items: Array(0), type: web, entry_point: https://streaming.test/} @ https://streaming.test/:136 +[ 282598ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 282965ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 284035ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 287027ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 287165ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 288259ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 300731ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 300788ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 302106ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 308395ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 308548ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 309601ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 323373ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 344915ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 344965ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 346044ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 359895ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 365380ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 365429ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 366488ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 373468ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 373536ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 374599ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 388448ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 388781ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 388888ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 389953ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 402183ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 402287ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 403350ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 417174ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 447174ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 462973ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 463104ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 464177ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 474843ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 475032ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 476099ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 489818ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 491243ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 491366ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 492439ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 506217ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-30T00-01-42-231Z.log b/.playwright-mcp/console-2026-07-30T00-01-42-231Z.log new file mode 100644 index 0000000..9fdc591 --- /dev/null +++ b/.playwright-mcp/console-2026-07-30T00-01-42-231Z.log @@ -0,0 +1,14 @@ +[ 141ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 238ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1304ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 15141ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 45144ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 105147ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 157729ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 158806ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 160944ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 161069ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 162149ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 167470ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 168536ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 175924ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-30T00-04-59-157Z.log b/.playwright-mcp/console-2026-07-30T00-04-59-157Z.log new file mode 100644 index 0000000..dccdbc4 --- /dev/null +++ b/.playwright-mcp/console-2026-07-30T00-04-59-157Z.log @@ -0,0 +1,27 @@ +[ 180ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 235ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1296ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 15158ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 20001ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 20139ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 21198ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 34976ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 42281ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 42401ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 43475ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 57258ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 59722ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 59865ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 60923ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 74705ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 87297ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 87389ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 88464ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 102264ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 108180ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 108268ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 109333ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 123157ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 139666ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 139824ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 140897ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 diff --git a/.playwright-mcp/console-2026-07-30T00-07-32-693Z.log b/.playwright-mcp/console-2026-07-30T00-07-32-693Z.log new file mode 100644 index 0000000..c9f9007 --- /dev/null +++ b/.playwright-mcp/console-2026-07-30T00-07-32-693Z.log @@ -0,0 +1,224 @@ +[ 195ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 275ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1341ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 10337ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 10466ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 11555ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 25318ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 36679ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 36787ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 37846ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 51654ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 65239ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 65446ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 66554ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 80210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 110213ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 170213ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 178261ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 178411ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 179483ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 193263ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 223260ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 231588ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 231695ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 232763ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 246565ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 253676ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 253827ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 254901ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 268647ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 278046ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 278174ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 279237ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 293013ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 311857ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 311973ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 313042ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 326835ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 356836ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 365406ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 365621ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 366703ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 378956ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 379078ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 380178ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 380263ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 380408ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 381470ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 395264ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 416000ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 416126ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 417204ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 430975ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 436208ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 436393ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 437453ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 451190ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 481190ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 541189ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 601189ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 661191ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 721195ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 751856ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 751967ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 753027ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 766828ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 770987ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 771085ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 772148ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 778010ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 778113ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 779173ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 786839ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 787005ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 788066ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 801839ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 803252ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 803372ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 804469ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 809542ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 809646ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 810707ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 816720ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 816847ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 817931ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 821545ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 821650ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 822721ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 829373ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 829486ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 830550ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 844350ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 874350ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 918357ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 918537ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 919611ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 933335ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 936358ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 936648ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 937767ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 951340ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 981341ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1022232ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1022432ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1023494ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1030858ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1031038ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1032116ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1045809ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1075810ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1135809ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1169132ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1169320ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1170384ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1174114ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1174222ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1175289ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1185391ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1185508ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1186577ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1190986ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1191104ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1192172ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1199291ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1199462ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1200544ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1214262ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1221391ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1221516ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1222581ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1236361ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1266362ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1326364ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1330642ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1330760ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1331818ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1340606ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1340726ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1341785ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1355578ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1385578ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1387558ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1387699ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1388756ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1402529ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1414793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1414924ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1415989ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1429766ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1459767ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1470269ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1470371ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1471440ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1476065ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1476268ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1477335ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1483514ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1483607ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1484682ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1491213ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1491280ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1492361ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1498009ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/:0 +[ 1498042ms] [INFO] %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold @ https://streaming.test/:131 +[ 1498053ms] [LOG] {report: Object, shareableReport: Object, config: Object, solutions: Array(1), updateConfigEndpoint: /_ignition/update-config} {frames: Array(38), context_items: Object, custom_context_items: Array(0), type: web, entry_point: https://streaming.test/} @ https://streaming.test/:136 +[ 1501704ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1501758ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1502811ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1506036ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1506145ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1507217ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1515115ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1515220ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1516263ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1520278ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1520334ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1521405ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1535265ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1557940ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1558024ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1559091ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1572923ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1573814ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1573854ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1574964ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1584043ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1584130ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1585194ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1598995ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1603082ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1603256ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1604318ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1618066ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1635847ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1636385ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1637613ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1643921ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1644277ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1645363ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1658899ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1681649ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1682073ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1683200ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1696627ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1698462ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1698572ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1699641ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1705682ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1705741ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1706808ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1720662ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1750667ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1752950ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1753037ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1754127ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1759841ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1759914ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1761075ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1774843ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1804857ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1806335ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1807406ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_sd_1785371822_00011.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 1812570ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1818649ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_sd_1785371822_00015.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 diff --git a/.playwright-mcp/console-2026-07-30T00-37-56-032Z.log b/.playwright-mcp/console-2026-07-30T00-37-56-032Z.log new file mode 100644 index 0000000..3cd9d35 --- /dev/null +++ b/.playwright-mcp/console-2026-07-30T00-37-56-032Z.log @@ -0,0 +1,9 @@ +[ 1184ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 3162ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_sd_1785371822_00017.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 16124ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 46122ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 59269ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 60277ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 64595ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 77775ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 92684ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-30T00-39-32-370Z.log b/.playwright-mcp/console-2026-07-30T00-39-32-370Z.log new file mode 100644 index 0000000..0cdff90 --- /dev/null +++ b/.playwright-mcp/console-2026-07-30T00-39-32-370Z.log @@ -0,0 +1,7 @@ +[ 4747ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 15039ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 29925ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 36079ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 51040ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 68797ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 83770ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-30T00-40-57-021Z.log b/.playwright-mcp/console-2026-07-30T00-40-57-021Z.log new file mode 100644 index 0000000..fa4258f --- /dev/null +++ b/.playwright-mcp/console-2026-07-30T00-40-57-021Z.log @@ -0,0 +1,474 @@ +[ 4144ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 17270ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 32250ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 33342ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 48333ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 56982ms] [LOG] [vite] server connection lost. Polling for restart... @ http://[::1]:5173/@vite/client:963 +[ 56984ms] [ERROR] WebSocket connection to 'ws://[::1]:5173/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://[::1]:5173/@vite/client:1034 +[ 63943ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 78652ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 108600ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 152539ms] [LOG] [vite] server connection lost. Polling for restart... @ http://[::1]:5173/@vite/client:963 +[ 152543ms] [ERROR] WebSocket connection to 'ws://[::1]:5173/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://[::1]:5173/@vite/client:1034 +[ 156707ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 171563ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 189039ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 203931ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 233911ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 293913ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 353913ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 413913ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 473929ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 509048ms] [WARNING] VIDEOJS: WARN: A plugin named "qualityLevels" already exists. You may want to avoid re-registering plugins! @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 509133ms] [LOG] Internal navigation detected - will try unmuted autoplay @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:35 +[ 509159ms] [LOG] Chromecast plugin loaded successfully @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:102 +[ 509159ms] [LOG] Chromecast plugin is registered with Video.js @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:106 +[ 509245ms] [LOG] Cast SDK loaded @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:116 +[ 509246ms] [LOG] Internal navigation - attempting unmuted autoplay @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:162 +[ 509357ms] [LOG] Cast API is available @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:120 +[ 509365ms] [LOG] Player is ready @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:332 +[ 509366ms] [LOG] Hotkeys plugin initialized @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:451 +[ 509366ms] [LOG] Player ready - Initial volume: 1 Muted: false @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:469 +[ 509366ms] [LOG] Chromecast plugin is available on player @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:473 +[ 509377ms] [WARNING] Mixed Content: The page at 'https://streaming.test/show/ef-prime' was loaded over HTTPS, but requested an insecure element 'http://[::1]:5173/node_modules/@silvermine/videojs-chromecast/dist/images/ic_cast_white_24dp.png'. This request was not upgraded to HTTPS because its URL's host is an IP address. @ http://[::1]:5173/node_modules/.vite/deps/videojs-hotkeys.js?v=6cb87dfa:71 +[ 509466ms] [LOG] Attempting unmuted autoplay (internal navigation)... @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:341 +[ 509905ms] [LOG] Quality level added: 480p @ 1790800 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:826 +[ 509905ms] [LOG] Quality level added: 720p @ 4026000 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:826 +[ 509905ms] [LOG] Quality level added: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:826 +[ 509905ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 509905ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 509907ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 510040ms] [LOG] Metadata loaded @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:704 +[ 510041ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 510055ms] [LOG] Data loaded @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:736 +[ 510055ms] [LOG] Can play @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:757 +[ 510056ms] [LOG] Stream is playing @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:57 +[ 510056ms] [LOG] Unmuted autoplay successful! @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:343 +[ 510367ms] [LOG] Chromecast button found in control bar @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:479 +[ 510370ms] [LOG] Adaptive quality selector added with 3 qualities @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:669 +[ 511056ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 511568ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 511570ms] [LOG] Can play @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:757 +[ 511570ms] [LOG] Stream is playing @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:57 +[ 512578ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 518949ms] [WARNING] VIDEOJS: WARN: Problem encountered with playlist 0-/hls/prime_sd.m3u8. Playlist no longer updating. Switching to playlist 1-/hls/prime_hd.m3u8. @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 519031ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 519031ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 519031ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 521265ms] [WARNING] VIDEOJS: WARN: Problem encountered with playlist 1-/hls/prime_hd.m3u8. Playlist no longer updating. Switching to playlist 2-/hls/prime_fhd.m3u8. @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 521324ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 521324ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 521324ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 523426ms] [WARNING] VIDEOJS: WARN: Removing other playlists from the exclusion list because the last rendition is about to be excluded. @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 523426ms] [WARNING] VIDEOJS: WARN: Problem encountered with playlist 2-/hls/prime_fhd.m3u8. Playlist no longer updating. Switching to playlist 0-/hls/prime_sd.m3u8. @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 524681ms] [LOG] Quality switched to: 720p @ 4026000 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 524681ms] [LOG] Quality changed: {height: 720, width: 1280, bitrate: 4026000, index: 1, label: 720p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 524681ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 533014ms] [LOG] Internal navigation detected - will try unmuted autoplay @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:35 +[ 533022ms] [LOG] Chromecast plugin loaded successfully @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:102 +[ 533022ms] [LOG] Chromecast plugin is registered with Video.js @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:106 +[ 533022ms] [LOG] Cast SDK already loaded @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:131 +[ 533022ms] [LOG] Internal navigation - attempting unmuted autoplay @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:162 +[ 533065ms] [LOG] Player is ready @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:332 +[ 533065ms] [LOG] Hotkeys plugin initialized @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:451 +[ 533065ms] [LOG] Player ready - Initial volume: 1 Muted: false @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:469 +[ 533065ms] [LOG] Chromecast plugin is available on player @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:473 +[ 533165ms] [LOG] Attempting unmuted autoplay (internal navigation)... @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:341 +[ 533268ms] [LOG] Quality level added: 480p @ 1790800 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:826 +[ 533268ms] [LOG] Quality level added: 720p @ 4026000 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:826 +[ 533268ms] [LOG] Quality level added: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:826 +[ 533268ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 533268ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 533269ms] [LOG] Playing show: Art Show Walkthrough @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 533412ms] [LOG] Metadata loaded @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:704 +[ 533412ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 533428ms] [LOG] Data loaded @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:736 +[ 533429ms] [LOG] Can play @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:757 +[ 533433ms] [LOG] Stream is playing @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:57 +[ 533434ms] [LOG] Unmuted autoplay successful! @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:343 +[ 533570ms] [LOG] Adaptive quality selector added with 3 qualities @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:669 +[ 533921ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 534066ms] [LOG] Chromecast button found in control bar @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:479 +[ 534429ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 535146ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 535307ms] [LOG] Can play @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:757 +[ 535308ms] [LOG] Stream is playing @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:57 +[ 535678ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 535789ms] [LOG] Can play @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:757 +[ 535789ms] [LOG] Final autoplay attempt on canplay... @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:761 +[ 535789ms] [LOG] Stream is playing @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:57 +[ 536163ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 536169ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 536170ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 536180ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 536254ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 536255ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 536259ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 536266ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 536454ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 536582ms] [LOG] Can play @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:757 +[ 536582ms] [LOG] Stream is playing @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:57 +[ 537048ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 537048ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 537048ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 537078ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 537078ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 537150ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 537150ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 537273ms] [LOG] Can play @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:757 +[ 537274ms] [LOG] Stream is playing @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:57 +[ 537562ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 537669ms] [LOG] Can play @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:757 +[ 537669ms] [LOG] Final autoplay attempt on canplay... @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:761 +[ 537670ms] [LOG] Stream is playing @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:57 +[ 538670ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 543380ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T004949Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=870429f7bd700855de3850db0fc80532c4423072de7280d5422c0d1d196b7aec'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 543380ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T004949Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=870429f7bd700855de3850db0fc80532c4423072de7280d5422c0d1d196b7aec'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 546231ms] [LOG] Internal navigation detected - will try unmuted autoplay @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:35 +[ 546240ms] [LOG] Chromecast plugin loaded successfully @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:102 +[ 546240ms] [LOG] Chromecast plugin is registered with Video.js @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:106 +[ 546240ms] [LOG] Cast SDK already loaded @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:131 +[ 546240ms] [LOG] Internal navigation - attempting unmuted autoplay @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:162 +[ 546265ms] [LOG] Player is ready @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:332 +[ 546265ms] [LOG] Hotkeys plugin initialized @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:451 +[ 546265ms] [LOG] Player ready - Initial volume: 1 Muted: false @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:469 +[ 546265ms] [LOG] Chromecast plugin is available on player @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:473 +[ 546365ms] [LOG] Attempting unmuted autoplay (internal navigation)... @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:341 +[ 546396ms] [LOG] Quality level added: 480p @ 1790800 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:826 +[ 546396ms] [LOG] Quality level added: 720p @ 4026000 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:826 +[ 546396ms] [LOG] Quality level added: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:826 +[ 546396ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 546396ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 546396ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 546409ms] [LOG] Metadata loaded @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:704 +[ 546409ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 546416ms] [LOG] Data loaded @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:736 +[ 546416ms] [LOG] Can play @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:757 +[ 546416ms] [LOG] Stream is playing @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:57 +[ 546416ms] [LOG] Unmuted autoplay successful! @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:343 +[ 546767ms] [LOG] Adaptive quality selector added with 3 qualities @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:669 +[ 547267ms] [LOG] Chromecast button found in control bar @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:479 +[ 547418ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 553372ms] [WARNING] VIDEOJS: WARN: Problem encountered with playlist 0-/hls/prime_sd.m3u8. Playlist no longer updating. Switching to playlist 1-/hls/prime_hd.m3u8. @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 553448ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 553448ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 553448ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 555533ms] [WARNING] VIDEOJS: WARN: Problem encountered with playlist 1-/hls/prime_hd.m3u8. Playlist no longer updating. Switching to playlist 2-/hls/prime_fhd.m3u8. @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 555597ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 555597ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 555597ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 558214ms] [WARNING] VIDEOJS: WARN: Removing other playlists from the exclusion list because the last rendition is about to be excluded. @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 558214ms] [WARNING] VIDEOJS: WARN: Problem encountered with playlist 2-/hls/prime_fhd.m3u8. Playlist no longer updating. Switching to playlist 0-/hls/prime_sd.m3u8. @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 559292ms] [LOG] Quality switched to: 720p @ 4026000 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 559292ms] [LOG] Quality changed: {height: 720, width: 1280, bitrate: 4026000, index: 1, label: 720p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 559292ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 593926ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 627696ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 627696ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 627696ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 627714ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 628401ms] [LOG] Can play @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:757 +[ 628401ms] [LOG] Stream is playing @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:57 +[ 628648ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 628648ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 628648ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 628789ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 628789ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 628789ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 629112ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 629112ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 629112ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 629259ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 629259ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 629259ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 629407ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 629410ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 629410ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 629410ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 629544ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 629544ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 629544ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 629722ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 629722ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 629722ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 629970ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 629970ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 629970ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 630388ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 630388ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 630388ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 630408ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 630408ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 630408ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 630426ms] [LOG] Quality switched to: 1080p @ 6811200 bps @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:857 +[ 630426ms] [LOG] Quality changed: {height: 1080, width: 1920, bitrate: 6811200, index: 2, label: 1080p} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:92 +[ 630426ms] [LOG] Playing show: EF Prime @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:94 +[ 632966ms] [WARNING] VIDEOJS: WARN: Using the tech directly can be dangerous. I hope you know what you're doing. +See https://github.com/videojs/video.js/issues/2617 for more info. + @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 643672ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005140Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=e16efaf231b71d6c85ff4c086b56a0936c4f03c658aa8ffd9390457e4e21ffbd'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 643672ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005140Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=e16efaf231b71d6c85ff4c086b56a0936c4f03c658aa8ffd9390457e4e21ffbd'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 649432ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/panel-room/master.m3u8:0 +[ 649540ms] [LOG] Internal navigation detected - will try unmuted autoplay @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:35 +[ 649556ms] [LOG] Chromecast plugin loaded successfully @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:102 +[ 649556ms] [LOG] Chromecast plugin is registered with Video.js @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:106 +[ 649556ms] [LOG] Cast SDK already loaded @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:131 +[ 649557ms] [LOG] Internal navigation - attempting unmuted autoplay @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:162 +[ 649597ms] [LOG] Player is ready @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:332 +[ 649597ms] [LOG] Hotkeys plugin initialized @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:451 +[ 649597ms] [LOG] Player ready - Initial volume: 1 Muted: false @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:469 +[ 649597ms] [LOG] Chromecast plugin is available on player @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:473 +[ 649699ms] [LOG] Attempting unmuted autoplay (internal navigation)... @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:341 +[ 649818ms] [ERROR] Failed to load resource: the server responded with a status of 502 (Bad Gateway) @ https://streaming.test/hls/panel-room/master.m3u8:0 +[ 649820ms] [ERROR] VIDEOJS: ERROR: (CODE:4 MEDIA_ERR_SRC_NOT_SUPPORTED) The media could not be loaded, either because the server or network failed or because the format is not supported. MediaError @ http://[::1]:5173/node_modules/.vite/deps/chunk-DTGHR6ZK.js?v=6cb87dfa:12022 +[ 649821ms] [ERROR] Video.js error: {type: error, target: div#video-player.video-js.vjs-default-skin.vjs-big-play-centered.vjs-fluid.video-player-dimensions.…, relatedTarget: undefined, preventDefault: , defaultPrevented: false} @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:685 +[ 649822ms] [ERROR] Player error: {type: error, target: div#video-player.video-js.vjs-default-skin.vjs-big-play-centered.vjs-fluid.video-player-dimensions.…, relatedTarget: undefined, preventDefault: , defaultPrevented: false} @ http://[::1]:5173/resources/js/Components/Livestream/StreamPlayer.vue:53 +[ 649822ms] [ERROR] Unmuted autoplay failed, falling back to muted: NotSupportedError: Failed to load because no supported source was found. @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:345 +[ 649823ms] [ERROR] Muted autoplay also failed: NotSupportedError: The element has no supported sources. @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:352 +[ 649826ms] [LOG] Volume changed - Volume: 1 Muted: true @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:807 +[ 649826ms] [LOG] Saved to cookies - Volume: 1 Muted: true @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:813 +[ 650598ms] [LOG] Chromecast button found in control bar @ http://[::1]:5173/resources/js/Components/Livestream/VideoJsPlayer.vue:479 +[ 650702ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005140Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=e16efaf231b71d6c85ff4c086b56a0936c4f03c658aa8ffd9390457e4e21ffbd'. This request was not upgraded to HTTPS because it is a local network request. @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:11543 +[ 650711ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005140Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=e16efaf231b71d6c85ff4c086b56a0936c4f03c658aa8ffd9390457e4e21ffbd'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 653929ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 713939ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 773928ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 800010ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005416Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=34431d4880b64dddcff53ed06a531ae4c181e43e3475396c28f79f6491c135f0'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 800011ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005416Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=34431d4880b64dddcff53ed06a531ae4c181e43e3475396c28f79f6491c135f0'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 800055ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 811397ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005428Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=695d7502f3b3b5d4f4e368d70acf57fbb9eb22bd8c77d469e55100fe0f12c3bd'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 811397ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005428Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=695d7502f3b3b5d4f4e368d70acf57fbb9eb22bd8c77d469e55100fe0f12c3bd'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 811411ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 824942ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005441Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=3f8cb0cad7c3d0afa5cc29aa94f2c32fa260da60a98da55d8dba746409238e5b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 824943ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005441Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=3f8cb0cad7c3d0afa5cc29aa94f2c32fa260da60a98da55d8dba746409238e5b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 824962ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 839922ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 865067ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005521Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=396b561ff4d183a75f90ad99dbd6a78314a4b6a1f0882e74b4a34bcdc26eef93'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 865067ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005521Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=396b561ff4d183a75f90ad99dbd6a78314a4b6a1f0882e74b4a34bcdc26eef93'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 865086ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 880065ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 910018ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005606Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=e5a76e2e35a3df206a9d841ff6dccdaec3c5d539939b47cf02d4e37c5ca76618'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 910018ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005606Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=e5a76e2e35a3df206a9d841ff6dccdaec3c5d539939b47cf02d4e37c5ca76618'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 910050ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 924987ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 928157ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005625Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=d6fa8a2e14d179bda6f0d4cb6d9f6f54809f8896cd9d40f66c33199c52239e79'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 928157ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005625Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=d6fa8a2e14d179bda6f0d4cb6d9f6f54809f8896cd9d40f66c33199c52239e79'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 928167ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 943154ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 973163ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1017872ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005754Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=a8f2b34e9953fa5e932fc039de76775534343336d1a89cfb01e216d6b9c09cbb'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1017872ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005754Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=a8f2b34e9953fa5e932fc039de76775534343336d1a89cfb01e216d6b9c09cbb'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1017937ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1030617ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005807Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=1ac805a16ddbfa6bde5205a31a54983d809985ed77562367d4b00876be3043ff'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1030617ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005807Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=1ac805a16ddbfa6bde5205a31a54983d809985ed77562367d4b00876be3043ff'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1030632ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1045618ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1057531ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005834Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=2eae4b846636df89ba62c869770566144386a45a4b1e4bef4652108ffd3ef62f'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1057531ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005834Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=2eae4b846636df89ba62c869770566144386a45a4b1e4bef4652108ffd3ef62f'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1057575ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1072507ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1102518ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1107604ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005924Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=e2fcc168ba91e12f58f9fc8fc1c200ce6c0bd6047bf0b33463af98c89c1993ef'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1107605ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005924Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=e2fcc168ba91e12f58f9fc8fc1c200ce6c0bd6047bf0b33463af98c89c1993ef'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1107619ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1108798ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005925Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=86a97326d97c6122838354c8eb3b7c2f4f0d0cf06021ed0b2a21867cabb2587b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1108798ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005925Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=86a97326d97c6122838354c8eb3b7c2f4f0d0cf06021ed0b2a21867cabb2587b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1108809ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1121069ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005937Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=3380df7af4e089ce95161f2823a548f711dadaa64fa7b7bd86118c1012a565c8'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1121070ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005937Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=3380df7af4e089ce95161f2823a548f711dadaa64fa7b7bd86118c1012a565c8'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1121105ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1126835ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005943Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=435a54846cd2811f83697d8d0eeff8fefba203f46672130705222872951847d6'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1126835ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005943Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=435a54846cd2811f83697d8d0eeff8fefba203f46672130705222872951847d6'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1126895ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1128379ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005945Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=aeb6e3d264b3fc6a048b1fee133a614d579fcb914710f96a11dc3f257255cc52'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1128379ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T005945Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=aeb6e3d264b3fc6a048b1fee133a614d579fcb914710f96a11dc3f257255cc52'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1128425ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1143364ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1146877ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010003Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=5b9954f2178edeb835bb63dac439fb9d765df110e9b59d58636d353f6aada2f4'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1146877ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010003Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=5b9954f2178edeb835bb63dac439fb9d765df110e9b59d58636d353f6aada2f4'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1146888ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1157755ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010014Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=6dc660643abd0bc74899f6cc53c04861f5757519213c98ade3320b86c6942b38'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1157755ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010014Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=6dc660643abd0bc74899f6cc53c04861f5757519213c98ade3320b86c6942b38'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1157787ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1165514ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010022Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=fec4b5a0d8a6526e082b1724255af0283dd9728e79519d6882f32465a11a3bae'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1165514ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010022Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=fec4b5a0d8a6526e082b1724255af0283dd9728e79519d6882f32465a11a3bae'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1165527ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1174487ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010031Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=a9bfae85b2e1158b8f39d029fd2fe8fc2d44595d9c81862151159612680b3fa6'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1174487ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010031Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=a9bfae85b2e1158b8f39d029fd2fe8fc2d44595d9c81862151159612680b3fa6'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1174571ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1176595ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010033Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=78cb22bda400ce896ea59404f11f0435f7884e4a03c8add51d5de0da40852eb3'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1176595ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010033Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=78cb22bda400ce896ea59404f11f0435f7884e4a03c8add51d5de0da40852eb3'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1176605ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1181447ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010038Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=a80ddd0613b792b34211de09468f5fcbf080d807fdf89777e02dbde225edbf22'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1181447ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010038Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=a80ddd0613b792b34211de09468f5fcbf080d807fdf89777e02dbde225edbf22'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1181463ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1196439ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1225116ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010121Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=3f79615b463b0dc2e5baceddf7daba82739e64f0106ae2dd9606436d40b34af2'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1225116ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010121Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=3f79615b463b0dc2e5baceddf7daba82739e64f0106ae2dd9606436d40b34af2'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1225135ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1232273ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010129Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=d140a3bc1caa21d45a609a6c5404518f7320236368f20bc923181b5999bb1b7d'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1232273ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010129Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=d140a3bc1caa21d45a609a6c5404518f7320236368f20bc923181b5999bb1b7d'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1232289ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1239987ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010136Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=8824897dd903a968fa284ca6e11f7c394381a8c581f307ea43c3276c6df8d5ea'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1239988ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010136Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=8824897dd903a968fa284ca6e11f7c394381a8c581f307ea43c3276c6df8d5ea'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1240001ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1252548ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010149Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=b3bd39a9e1e2f2cf598119478192e6633924ec0482cae55321678207203f6d47'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1252549ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010149Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=b3bd39a9e1e2f2cf598119478192e6633924ec0482cae55321678207203f6d47'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1252563ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1257214ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010154Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=32143f11d1bd9e18bcd4a1b16a7beee1f65df951b9ec66f0b61a2d49ec0c5f3b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1257214ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010154Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=32143f11d1bd9e18bcd4a1b16a7beee1f65df951b9ec66f0b61a2d49ec0c5f3b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1257226ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1266640ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010203Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=27c52c5139e5728d9a8f37163e9e0ecf94aba1ed14981719c373f3f44ad5631b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1266640ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010203Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=27c52c5139e5728d9a8f37163e9e0ecf94aba1ed14981719c373f3f44ad5631b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1266690ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1273804ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010210Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=e1dd0799975c5be6c36eca0f0102f5f4281f2da39b2ac1fce4875d80d818cf0a'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1273804ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010210Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=e1dd0799975c5be6c36eca0f0102f5f4281f2da39b2ac1fce4875d80d818cf0a'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1273815ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1277504ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010214Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=2a60a5359f28e6008782c695bcea490461a6a1781df052ee8adbfc5eba710070'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1277504ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010214Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=2a60a5359f28e6008782c695bcea490461a6a1781df052ee8adbfc5eba710070'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1277639ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1281925ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010218Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=8b2517d08c4c9c52d56fc19827d8e35d97762c785fe24094fc1641b8ff516536'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1281926ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010218Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=8b2517d08c4c9c52d56fc19827d8e35d97762c785fe24094fc1641b8ff516536'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1281937ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1285192ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010222Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=51803f4f6db5821d0af380a140785232a5f7b4013b87a41a8e74d55b8c93f910'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1285192ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010222Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=51803f4f6db5821d0af380a140785232a5f7b4013b87a41a8e74d55b8c93f910'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1285204ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1288069ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/show/ef-prime:0 +[ 1288118ms] [LOG] {report: Object, shareableReport: Object, config: Object, solutions: Array(0), updateConfigEndpoint: /_ignition/update-config} {frames: Array(81), context_items: Object, custom_context_items: Array(0), type: web, entry_point: https://streaming.test/show/ef-prime} @ :7 +[ 1297722ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010234Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=66d11ed8f86e580e70f4d15a03dbdf9583365abc9b9ddea6895dd20e184eedb6'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1297722ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010234Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=66d11ed8f86e580e70f4d15a03dbdf9583365abc9b9ddea6895dd20e184eedb6'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1297731ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1299506ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010236Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=147b4d25d38ce736c9b1cddad443189fe2d0ba1c85df0e2841d2f91bac50369e'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1299506ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010236Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=147b4d25d38ce736c9b1cddad443189fe2d0ba1c85df0e2841d2f91bac50369e'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1299517ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1314497ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1344488ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1362500ms] [ERROR] Failed to load resource: the server responded with a status of 404 (Not Found) @ http://[::1]:5173/resources/js/composables/useNow.js?t=1785373419435:0 +[ 1362500ms] [ERROR] [vite] Failed to reload /resources/js/Components/Shows/StageHero.vue. This could be due to syntax errors or importing non-existent modules. (see errors above) @ http://[::1]:5173/@vite/client:881 +[ 1362500ms] [ERROR] [vite] Failed to reload /resources/js/Components/Shows/ShowTile.vue. This could be due to syntax errors or importing non-existent modules. (see errors above) @ http://[::1]:5173/@vite/client:881 +[ 1399110ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010236Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=147b4d25d38ce736c9b1cddad443189fe2d0ba1c85df0e2841d2f91bac50369e'. This request was not upgraded to HTTPS because it is a local network request. @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:11543 +[ 1399113ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010236Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=147b4d25d38ce736c9b1cddad443189fe2d0ba1c85df0e2841d2f91bac50369e'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1399221ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010236Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=147b4d25d38ce736c9b1cddad443189fe2d0ba1c85df0e2841d2f91bac50369e'. This request was not upgraded to HTTPS because it is a local network request. @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:11543 +[ 1399222ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010236Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=147b4d25d38ce736c9b1cddad443189fe2d0ba1c85df0e2841d2f91bac50369e'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1401246ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010417Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=0d4138a056e6291f069f29c374ddcd9a2efdd02cb909678b6b0ba9d2d0321b89'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1401246ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010417Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=0d4138a056e6291f069f29c374ddcd9a2efdd02cb909678b6b0ba9d2d0321b89'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1401268ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1408907ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010425Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=5873bfc9ffb6e34cec4ed3e7b283d2aff859ebb0c3e06bd86094a1a79b3ca100'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1408907ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010425Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=5873bfc9ffb6e34cec4ed3e7b283d2aff859ebb0c3e06bd86094a1a79b3ca100'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1408993ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1423874ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1453877ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1513894ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1538249ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010634Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=8de685da13d9ec55d2558497eaef4763dd14a07138e7a7828170c441245d6dec'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1538249ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010634Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=8de685da13d9ec55d2558497eaef4763dd14a07138e7a7828170c441245d6dec'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1538268ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1550343ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010647Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=90cc00a3548fa1037a5575df7e6abf6828a18602744feccdce9b7798d1cfe089'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1550343ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010647Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=90cc00a3548fa1037a5575df7e6abf6828a18602744feccdce9b7798d1cfe089'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1550419ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1565374ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1595300ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1655303ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1690483ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010907Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=4414e4da7eea67e66ef7ace464dbad6d44a3c4ba4a175393131112a6a0022ea6'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1690484ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010907Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=4414e4da7eea67e66ef7ace464dbad6d44a3c4ba4a175393131112a6a0022ea6'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1690496ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1694777ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010911Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=b12f0dd9ac390dd694e831f98ca8ff7d10b9e401a6c7abe9ad6c98545c3b2dd4'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1694777ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010911Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=b12f0dd9ac390dd694e831f98ca8ff7d10b9e401a6c7abe9ad6c98545c3b2dd4'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1694793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1699452ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010916Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=014ad78354e601bd60ac792b36a6b47150b8666f3974f740c29a6fd38340453b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1699452ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010916Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=014ad78354e601bd60ac792b36a6b47150b8666f3974f740c29a6fd38340453b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1699468ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1700187ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010917Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=7cf4a386c39345582e6b3e0758f61ac27a14b35c43802234d2a6ea3aa4094d5a'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1700187ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010917Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=7cf4a386c39345582e6b3e0758f61ac27a14b35c43802234d2a6ea3aa4094d5a'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1700210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1706975ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010923Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=2a5933691dbed8060cb7ffa022dbc8fdb7c188836f3470f9a0c2b321be15d6aa'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1706976ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010923Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=2a5933691dbed8060cb7ffa022dbc8fdb7c188836f3470f9a0c2b321be15d6aa'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1706990ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1713304ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010930Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=b160ed1c13b31a3a60faa3313fc7587d522d6cf701f505e05eb080f518371c69'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1713305ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010930Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=b160ed1c13b31a3a60faa3313fc7587d522d6cf701f505e05eb080f518371c69'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1713321ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1718988ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010935Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=f3ee39a61a3e7a57a62109c534b5cc98814574d6df222292ab00ed4d157a6371'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1718988ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010935Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=f3ee39a61a3e7a57a62109c534b5cc98814574d6df222292ab00ed4d157a6371'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1719014ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1729802ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010946Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=721e32d582a91b22fb6922a4946c4c63d3bc63e300885e182d848514e93f69fa'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1729803ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010946Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=721e32d582a91b22fb6922a4946c4c63d3bc63e300885e182d848514e93f69fa'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1729819ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1744810ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1747435ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010946Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=721e32d582a91b22fb6922a4946c4c63d3bc63e300885e182d848514e93f69fa'. This request was not upgraded to HTTPS because it is a local network request. @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:11543 +[ 1747438ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010946Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=721e32d582a91b22fb6922a4946c4c63d3bc63e300885e182d848514e93f69fa'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1747485ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010946Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=721e32d582a91b22fb6922a4946c4c63d3bc63e300885e182d848514e93f69fa'. This request was not upgraded to HTTPS because it is a local network request. @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:11543 +[ 1747503ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T010946Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=721e32d582a91b22fb6922a4946c4c63d3bc63e300885e182d848514e93f69fa'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1749057ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011005Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=6bd1ea599c6dbd3dad04544333125a23005cc89a42173ad53fe144254fa45643'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1749057ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011005Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=6bd1ea599c6dbd3dad04544333125a23005cc89a42173ad53fe144254fa45643'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1749220ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1754156ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011010Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=0929c06d0b2d2c5a42244c2bad1399c4679d216a19ada02177b1dca9e497b6be'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1754156ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011010Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=0929c06d0b2d2c5a42244c2bad1399c4679d216a19ada02177b1dca9e497b6be'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1754255ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 1759485ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011016Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=0510880c248c4afcd6c955a94da805c10ca9935beda7ec4bf3c16fe8272467b0'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1759486ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011016Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=0510880c248c4afcd6c955a94da805c10ca9935beda7ec4bf3c16fe8272467b0'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 1759509ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-30T01-10-19-952Z.log b/.playwright-mcp/console-2026-07-30T01-10-19-952Z.log new file mode 100644 index 0000000..0ca6bb8 --- /dev/null +++ b/.playwright-mcp/console-2026-07-30T01-10-19-952Z.log @@ -0,0 +1,59 @@ +[ 2119ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011021Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=7d0073178f382681b6becd4807760ab764a3a5699412b79ef76fc3183a1a863b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 2119ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011021Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=7d0073178f382681b6becd4807760ab764a3a5699412b79ef76fc3183a1a863b'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 2140ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 17158ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 26920ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011046Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=a3d30b419ca0b4aabae5cc957480b5e99514e8fc8f703b9c65eb3823564b4b8e'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 26920ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011046Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=a3d30b419ca0b4aabae5cc957480b5e99514e8fc8f703b9c65eb3823564b4b8e'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 26999ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 29739ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011049Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=b6b17165a6153ba6079d5fde60bf9d17e3ad534b2776233f01d03e60929b8e98'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 29739ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011049Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=b6b17165a6153ba6079d5fde60bf9d17e3ad534b2776233f01d03e60929b8e98'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 29824ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 32410ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011051Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=f834ba9951ed52e1d7af34049b7f2c1457b926746b62b1e70725c9c61a968baa'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 32410ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011051Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=f834ba9951ed52e1d7af34049b7f2c1457b926746b62b1e70725c9c61a968baa'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 32525ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 34789ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011054Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=261e37947fe0e9ef79beb1e60ec2da839e19946fa56225e56f87a50cb23b73d0'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 34789ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011054Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=261e37947fe0e9ef79beb1e60ec2da839e19946fa56225e56f87a50cb23b73d0'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 34831ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 49894ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 73403ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011132Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=48feb2a64b2b2b121372bf9c3e11630b36e462f21b80571b42f13e909b1898f2'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 73404ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011132Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=48feb2a64b2b2b121372bf9c3e11630b36e462f21b80571b42f13e909b1898f2'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 73533ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 86814ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011146Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=24898e68f494413ca6b21eafda51a54e97a2640fd8ab75668219982a367dc6a7'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 86814ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011146Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=24898e68f494413ca6b21eafda51a54e97a2640fd8ab75668219982a367dc6a7'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 86856ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 101829ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 128559ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011228Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=331c09d008640dc7b67c88ff69bf5d7aeecada2c86bd9fc06aee98b1abf72179'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 128559ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011228Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=331c09d008640dc7b67c88ff69bf5d7aeecada2c86bd9fc06aee98b1abf72179'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 128572ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 138147ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011237Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=ad0b4998ffbae2fa61318297dfd0b5dc020ae613a7cdb545fd11cf5a98072dff'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 138148ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011237Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=ad0b4998ffbae2fa61318297dfd0b5dc020ae613a7cdb545fd11cf5a98072dff'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 138249ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 151263ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011250Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=8cc7c77f1373c46de3cddf5e3e1549d6e180a55c281426981caf98e36d69e2bb'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 151263ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011250Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=8cc7c77f1373c46de3cddf5e3e1549d6e180a55c281426981caf98e36d69e2bb'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 151290ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 166413ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011306Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=0b6a8bde498e167d61c3e22a9e93234bb706c1c05f90d2b6326ffc9ef2097341'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 166414ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011306Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=0b6a8bde498e167d61c3e22a9e93234bb706c1c05f90d2b6326ffc9ef2097341'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 166455ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 168540ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011308Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=8de657c3b5cf20586c5717c058443cf6c2a676f54c36b35daac15d9a2eb29abf'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 168540ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011308Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=8de657c3b5cf20586c5717c058443cf6c2a676f54c36b35daac15d9a2eb29abf'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 168664ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 178513ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011318Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=91c381a28537f4b7065d9dec9d9b9618c8b16bd09c931ce41037687079084b11'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 178513ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011318Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=91c381a28537f4b7065d9dec9d9b9618c8b16bd09c931ce41037687079084b11'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 178526ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 186338ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011326Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=7fe49bf1c880c87c0a643532f92d97a0fd59619c56d7ae6ef971d82776b1a9d0'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 186338ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011326Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=7fe49bf1c880c87c0a643532f92d97a0fd59619c56d7ae6ef971d82776b1a9d0'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 186353ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 196184ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011335Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=9865a4d7188be916daac6806d53c6784af7e69604f9d4d666a8cf0ac7a1b1ed1'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 196184ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011335Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=9865a4d7188be916daac6806d53c6784af7e69604f9d4d666a8cf0ac7a1b1ed1'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 196281ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 211194ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 224743ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011404Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=00cfe743102bd1da0e140606cba3ebad632deb708f3b130fbee356f5cd1e7c1c'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 224743ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011404Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=00cfe743102bd1da0e140606cba3ebad632deb708f3b130fbee356f5cd1e7c1c'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 224823ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 239798ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 269767ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 286937ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011404Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=00cfe743102bd1da0e140606cba3ebad632deb708f3b130fbee356f5cd1e7c1c'. This request was not upgraded to HTTPS because it is a local network request. @ http://[::1]:5173/node_modules/.vite/deps/chunk-HQWNKBGN.js?v=6cb87dfa:11543 +[ 286940ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011404Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=00cfe743102bd1da0e140606cba3ebad632deb708f3b130fbee356f5cd1e7c1c'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 289641ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011509Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=98f8102a5743151b12caf0f96301ec876c2d02c035b5f3f702a50671df0a0058'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 289642ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011509Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=98f8102a5743151b12caf0f96301ec876c2d02c035b5f3f702a50671df0a0058'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 289656ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-30T01-15-22-946Z.log b/.playwright-mcp/console-2026-07-30T01-15-22-946Z.log new file mode 100644 index 0000000..19f1535 --- /dev/null +++ b/.playwright-mcp/console-2026-07-30T01-15-22-946Z.log @@ -0,0 +1,38 @@ +[ 694ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011523Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=f012d06af858bf0ef5cef69d99789ccff5bef49d27226a149a5107c1f90955b2'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 695ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011523Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=f012d06af858bf0ef5cef69d99789ccff5bef49d27226a149a5107c1f90955b2'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 709ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 5280ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_fhd.m3u8:0 +[ 6446ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_fhd.m3u8:0 +[ 8562ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_fhd.m3u8:0 +[ 8684ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_hd.m3u8:0 +[ 9755ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_hd.m3u8:0 +[ 11829ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_hd.m3u8:0 +[ 11888ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_sd.m3u8:0 +[ 13015ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_sd.m3u8:0 +[ 15095ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_sd.m3u8:0 +[ 15182ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_fhd.m3u8:0 +[ 15684ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 16299ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_fhd.m3u8:0 +[ 18493ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_fhd.m3u8:0 +[ 18648ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_hd.m3u8:0 +[ 19748ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_hd.m3u8:0 +[ 21834ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_hd.m3u8:0 +[ 21882ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_sd.m3u8:0 +[ 22959ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_sd.m3u8:0 +[ 25049ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_sd.m3u8:0 +[ 25100ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_fhd.m3u8:0 +[ 26178ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_fhd.m3u8:0 +[ 28281ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_fhd.m3u8:0 +[ 28351ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_hd.m3u8:0 +[ 29428ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_hd.m3u8:0 +[ 30509ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011553Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=1dc8524475af05dac0cad68d878f2eee914272a3c7a58f29f70249a04eaf7326'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 30509ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011553Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=1dc8524475af05dac0cad68d878f2eee914272a3c7a58f29f70249a04eaf7326'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 30523ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011553Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=1dc8524475af05dac0cad68d878f2eee914272a3c7a58f29f70249a04eaf7326:0 +[ 30530ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 30727ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 31842ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 45470ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 56466ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011619Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=ee200e2c15434e0bece84b38bae0438a7b5f42430692941c1d1c4b513e30de4d'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 56466ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011619Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=ee200e2c15434e0bece84b38bae0438a7b5f42430692941c1d1c4b513e30de4d'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 56484ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011619Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=ee200e2c15434e0bece84b38bae0438a7b5f42430692941c1d1c4b513e30de4d:0 +[ 56493ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-30T01-16-19-638Z.log b/.playwright-mcp/console-2026-07-30T01-16-19-638Z.log new file mode 100644 index 0000000..44d6c1e --- /dev/null +++ b/.playwright-mcp/console-2026-07-30T01-16-19-638Z.log @@ -0,0 +1,67 @@ +[ 470ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011619Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=ee200e2c15434e0bece84b38bae0438a7b5f42430692941c1d1c4b513e30de4d'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 471ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011619Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=ee200e2c15434e0bece84b38bae0438a7b5f42430692941c1d1c4b513e30de4d'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 479ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011619Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=ee200e2c15434e0bece84b38bae0438a7b5f42430692941c1d1c4b513e30de4d:0 +[ 485ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 642ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1777ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 10290ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011629Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=3bee45071716af03ed85e0cdfcb21d87161cf4f1e6b3ec7702f3da8340fe8f88'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 10291ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011629Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=3bee45071716af03ed85e0cdfcb21d87161cf4f1e6b3ec7702f3da8340fe8f88'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 10315ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011629Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=3bee45071716af03ed85e0cdfcb21d87161cf4f1e6b3ec7702f3da8340fe8f88:0 +[ 10325ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 10519ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 11601ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 24150ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011643Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=5d532852f1c1c52008572f0d7deae463fef419bee4c53395f9af300e5e53cde3'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 24150ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011643Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=5d532852f1c1c52008572f0d7deae463fef419bee4c53395f9af300e5e53cde3'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 24167ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011643Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=5d532852f1c1c52008572f0d7deae463fef419bee4c53395f9af300e5e53cde3:0 +[ 24175ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 24295ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 25390ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 31074ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011650Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=1bb311443008ddb26284b0b969e00c69df4ed9e04c8c1d12b5c88775c75474a8'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 31075ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011650Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=1bb311443008ddb26284b0b969e00c69df4ed9e04c8c1d12b5c88775c75474a8'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 31085ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011650Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=1bb311443008ddb26284b0b969e00c69df4ed9e04c8c1d12b5c88775c75474a8:0 +[ 31092ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 31272ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 32341ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011651Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=325047651557e5790142350b4de357b929da32b1609874fcd49f1e6f029f705a'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 32341ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011651Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=325047651557e5790142350b4de357b929da32b1609874fcd49f1e6f029f705a'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 32351ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011651Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=325047651557e5790142350b4de357b929da32b1609874fcd49f1e6f029f705a:0 +[ 32356ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 32484ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 33561ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 40555ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011659Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=eb4c754b39098356972dacdfb2a8c1202f73d6651effabe9aa2d3c985f33eb45'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 40555ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011659Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=eb4c754b39098356972dacdfb2a8c1202f73d6651effabe9aa2d3c985f33eb45'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 40567ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011659Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=eb4c754b39098356972dacdfb2a8c1202f73d6651effabe9aa2d3c985f33eb45:0 +[ 40573ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 40883ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 41973ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 46410ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011705Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=da6b5c6ec43d36795770ea3b47bbbe31ef94fceed18566d985d9ece17eb75501'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 46410ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011705Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=da6b5c6ec43d36795770ea3b47bbbe31ef94fceed18566d985d9ece17eb75501'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 46418ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011705Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=da6b5c6ec43d36795770ea3b47bbbe31ef94fceed18566d985d9ece17eb75501:0 +[ 46423ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 46600ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 47676ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 54499ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011713Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=195bd8c7d680ef6b529e5628a9934a2873015325ab805c6c0afac72a4285c4d5'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 54499ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011713Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=195bd8c7d680ef6b529e5628a9934a2873015325ab805c6c0afac72a4285c4d5'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 54509ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011713Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=195bd8c7d680ef6b529e5628a9934a2873015325ab805c6c0afac72a4285c4d5:0 +[ 54514ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 54692ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 55766ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 63445ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011722Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=2c1efbc4cf9e04ae53d254077d9842c5f0bfb951c4c5f4fb73a6bf1587a1dd90'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 63445ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011722Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=2c1efbc4cf9e04ae53d254077d9842c5f0bfb951c4c5f4fb73a6bf1587a1dd90'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 63461ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011722Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=2c1efbc4cf9e04ae53d254077d9842c5f0bfb951c4c5f4fb73a6bf1587a1dd90:0 +[ 63468ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 63833ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 64917ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 72196ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011731Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=200d59f92c94a72eedcc98542cd5ce942141ab20c79059efb37ae816c5ecb9c5'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 72196ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011731Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=200d59f92c94a72eedcc98542cd5ce942141ab20c79059efb37ae816c5ecb9c5'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 72214ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011731Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=200d59f92c94a72eedcc98542cd5ce942141ab20c79059efb37ae816c5ecb9c5:0 +[ 72220ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 72384ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 73484ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 77854ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011737Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=78fd7a315270621131ea79c4119598b1aeba960fff071ffb3a4e8290fc4ef671'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 77854ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011737Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=78fd7a315270621131ea79c4119598b1aeba960fff071ffb3a4e8290fc4ef671'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 77861ms] [ERROR] Failed to load resource: net::ERR_CONNECTION_REFUSED @ http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011737Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=78fd7a315270621131ea79c4119598b1aeba960fff071ffb3a4e8290fc4ef671:0 +[ 77866ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 78033ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 79126ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 92837ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 123009ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 diff --git a/.playwright-mcp/console-2026-07-30T01-18-35-162Z.log b/.playwright-mcp/console-2026-07-30T01-18-35-162Z.log new file mode 100644 index 0000000..8980316 --- /dev/null +++ b/.playwright-mcp/console-2026-07-30T01-18-35-162Z.log @@ -0,0 +1,3493 @@ +[ 6955ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011841Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=5ae00de92f244ca0f1419cd9a55403b00cab21a885949a3d677b79a28ecc5e98'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 6955ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011841Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=5ae00de92f244ca0f1419cd9a55403b00cab21a885949a3d677b79a28ecc5e98'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 7237ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 22013ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 43175ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 43457ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011914Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=c40ac21a82481d0d36cc243dcb1d8d0f582ff26af1c1c6edd7ab07443d3879ab'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 43457ms] [WARNING] Mixed Content: The page at 'https://streaming.test/' was loaded over HTTPS, but requested an insecure element 'http://localhost:7070/ef-streaming/shows/thumbnails/show_1_20260730024409.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=devkey%2F20260730%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T011914Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=c40ac21a82481d0d36cc243dcb1d8d0f582ff26af1c1c6edd7ab07443d3879ab'. This request was not upgraded to HTTPS because it is a local network request. @ https://streaming.test/:0 +[ 57995ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 88201ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 131719ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 146609ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 147976ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 162931ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 168801ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 181526ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 191984ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 203092ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 217966ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 229710ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 236767ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 250070ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 264958ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=6cb87dfa:3255 +[ 282261ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 297147ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 309154ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_sd_1785374591_00005.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 310228ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_sd_1785374591_00005.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 312323ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_sd_1785374591_00005.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 327153ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 387146ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 419218ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 434177ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 444020ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 455996ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 464534ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00087.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 465732ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 466405ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_sd_1785374591_00089.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 467504ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_sd_1785374591_00089.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 469599ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_sd_1785374591_00090.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 480700ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 510702ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 532199ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 547186ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 577184ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 637187ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 697186ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 708801ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 719455ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 734445ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 741960ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 745288ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 760275ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 760435ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 763969ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 770123ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 785113ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 815116ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=366f8e5b:3255 +[ 842449ms] [LOG] [vite] server connection lost. Polling for restart... @ http://[::1]:5173/@vite/client:963 +[ 842451ms] [ERROR] WebSocket connection to 'ws://[::1]:5173/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://[::1]:5173/@vite/client:1034 +[ 844714ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 852329ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 867334ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 897331ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 911025ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00320.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 912111ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00320.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 957330ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1017331ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1077337ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1137329ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1197334ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1230472ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1245446ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1249698ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1262159ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1270785ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1285165ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1300156ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1312286ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1319706ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1323806ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1338777ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1365500ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1373698ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1385069ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1391477ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1392347ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1393681ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime/master.m3u8:0 +[ 1398469ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1413468ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1443460ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1444155ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00602.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 1445168ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00602.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 1447267ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00602.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 1451369ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00602.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 1503468ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1523721ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1535249ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1550235ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1561200ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1576187ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1582186ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1587326ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1588627ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1588852ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1590654ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1591134ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1593263ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1608251ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1637702ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1646996ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1659990ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1674984ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1675422ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00722.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 1676443ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00722.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 1702529ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1702921ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1704104ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1719128ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1749101ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1809103ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[ 1810717ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00790.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 1811813ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00790.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 1813916ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ http://localhost:8085/live/prime_fhd_1785374591_00790.ts?streamkey=aPcEuvmemJki3cSBdgoQ4RTnv50arst5:0 +[ 1837274ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/hls/prime_fhd.m3u8:0 +[ 1837289ms] [ERROR] Failed to load resource: the server responded with a status of 500 (Internal Server Error) @ https://streaming.test/:0 +[ 1837330ms] [INFO] %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold @ https://streaming.test/:161 +[ 1837338ms] [LOG] {report: Object, shareableReport: Object, config: Object, solutions: Array(0), updateConfigEndpoint: /_ignition/update-config} {frames: Array(53), context_items: Object, custom_context_items: Array(0), type: web, entry_point: https://streaming.test/} @ https://streaming.test/:166 +[39417041ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[39431530ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[39432639ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[39447624ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[39477621ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[39501211ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[39502371ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[39507325ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[39513012ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=b87e66e0:3255 +[39525989ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=c360cb76:3255 +[39527582ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=c360cb76:3255 +[39531115ms] [LOG] [vite] server connection lost. Polling for restart... @ http://[::1]:5173/@vite/client:963 +[39531116ms] [ERROR] WebSocket connection to 'ws://[::1]:5173/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://[::1]:5173/@vite/client:1034 +[39532684ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39547686ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39569498ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39577501ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39592367ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39622367ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39643494ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39652212ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39667194ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39697190ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39757201ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39817198ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39877212ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39937202ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[39997205ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40057209ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40117207ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40177205ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40237209ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40297208ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40357210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40417213ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40477210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40537214ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40597212ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40657211ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40717207ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40777216ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40837213ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40897217ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[40957213ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41017215ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41077189ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41137175ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41197173ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41257171ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41317171ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41377198ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41437181ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41497170ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41557181ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41617177ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41677175ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41737179ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41797172ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41857177ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41917182ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[41977177ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42037177ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42097174ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42157170ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42217184ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42277177ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42337175ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42397180ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42457173ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42517178ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42577174ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42637177ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42697185ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42757178ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42817172ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42877193ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42937208ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[42997216ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43057215ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43117213ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43177212ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43237212ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43297216ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43357215ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43417217ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43477215ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43537216ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43597213ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43657218ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43717210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43777220ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43837214ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43897221ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[43957221ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44017216ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44077220ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44137218ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44197222ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44257223ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44317225ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44377223ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44437229ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44497221ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44557247ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44617231ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44677237ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44737238ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44797232ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44857262ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44917270ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[44977267ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45037269ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45097271ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45157270ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45217291ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45277279ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45337281ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45397283ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45457282ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45517283ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45577285ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45637283ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45697284ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45757289ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45817285ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45877288ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45937286ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[45997293ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46057286ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46117290ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46177291ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46237293ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46297291ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46357294ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46417295ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46477298ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46537290ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46597297ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46657298ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46717299ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46777293ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46837292ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46897293ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[46957293ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47017294ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47077296ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47137303ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47197298ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47257297ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47317297ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47377301ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47437358ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47497303ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47557306ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47617309ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47677309ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47737312ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47797312ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47857315ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47917319ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[47977316ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48037319ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48097316ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48157319ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48217322ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48277323ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48337326ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48397324ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48457330ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48517325ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48577330ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48637328ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48697331ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48757328ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48817337ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48877343ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48937348ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[48997349ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49057348ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49117352ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49177348ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49237352ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49297354ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49357352ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49417355ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49477358ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49537356ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49597364ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49657363ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49717366ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49777362ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49837365ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49897370ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[49957368ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50017370ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50077372ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50137369ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50197374ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50257377ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50317380ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50377380ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50437381ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50497385ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50557386ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50617385ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50677396ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50737371ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50797366ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50857365ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50917468ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[50977367ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51037373ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51097372ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51157381ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51217377ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51277376ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51337379ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51397377ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51457377ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51517380ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51577379ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51637380ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51697383ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51757385ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51817391ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51877393ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51937387ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[51997391ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52057387ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52117389ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52177394ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52237391ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52297396ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52357395ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52417401ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52477395ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52537396ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52597399ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52657412ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52717427ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52777433ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52837437ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52897438ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[52957439ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53017438ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53077448ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53137442ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53197450ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53257451ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53317451ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53377463ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53437459ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53497456ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53557458ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53617468ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53677465ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53737477ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53797473ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53857478ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53917473ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[53977477ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54037481ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54097479ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54157481ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54217490ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54277481ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54337485ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54397489ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54457488ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54517497ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54577494ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54637490ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54697473ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54757474ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54817477ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54877473ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54937479ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[54997478ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55057478ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55117483ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55177490ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55237486ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55297490ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55357490ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55417489ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55477492ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55537495ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55597494ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55657495ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55717498ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55777495ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55837496ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55897505ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[55957505ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56017505ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56077509ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56137506ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56197508ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56257512ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56317509ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56377510ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56437515ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56497511ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56557516ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56617516ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56677518ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56737515ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56797521ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56857515ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56917519ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[56977515ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57037525ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57097522ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57157526ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57217528ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57277527ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57337529ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57397524ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57457528ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57517531ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57577534ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57637535ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57697542ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57757533ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57817534ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57877540ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57937543ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[57997541ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58057541ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58117544ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58177546ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58237547ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58297550ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58357553ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58417546ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58477554ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58537553ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58597476ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58657476ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58717477ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58777475ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58837477ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58897474ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[58957475ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59017470ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59077471ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59137474ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59197474ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59257477ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59317469ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59377473ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59437475ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59497475ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59557471ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59617474ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59677473ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59737474ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59797470ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59857469ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59917470ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[59977470ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60037470ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60097466ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60157469ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60217462ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60277469ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60337465ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60397464ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60457462ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60517464ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60577466ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60637467ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60697477ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60757470ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60817460ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60877469ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60937464ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[60997467ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61057467ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61117462ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61177466ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61237464ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61297459ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61357460ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61417458ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61477457ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61537460ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61597457ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61657458ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61717451ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61777458ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61837454ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61897462ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[61957454ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62017453ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62077456ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62137454ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62197455ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62257449ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62317448ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62377450ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62437639ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62497654ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62557645ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62617650ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62677654ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62737658ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62797666ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62857663ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62917665ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[62977667ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63037669ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63097670ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63157675ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63217674ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63277677ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63337684ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63397687ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63457683ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63517690ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63577691ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63637694ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63697697ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63757695ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63817699ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63877701ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63937705ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[63997712ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64057707ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64117713ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64177711ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64237717ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64297720ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64357719ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64417719ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64477727ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64537724ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64597727ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64657726ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64717731ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64777734ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64837737ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64897743ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[64957743ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65017744ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65077750ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65137746ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65197757ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65257758ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65317756ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65377756ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65437776ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65497765ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65557764ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65617768ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65677766ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65737770ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65797782ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65857778ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65917783ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[65977778ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66037791ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66097788ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66157786ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66217789ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66277794ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66337787ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66397780ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66457786ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66517782ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66577787ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66637791ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66697787ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66757795ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66817794ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66877798ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66937796ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[66997803ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67057796ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67117807ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67177804ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67237805ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67297809ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67357806ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67417811ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67477816ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67537819ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67597816ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67657821ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67717822ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67777826ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67837826ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67897828ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[67957827ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68017832ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68077835ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68137838ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68197837ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68257839ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68317840ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68377833ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68437837ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68497833ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68557837ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68617838ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68677840ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68737840ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68797843ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68857854ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68917849ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[68977848ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69037853ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69097850ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69157849ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69217856ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69277859ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69337863ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69397866ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69457867ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69517870ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69577870ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69637870ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69697871ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69757878ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69817877ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69877880ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69937892ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[69997885ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70057892ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70117893ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70177886ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70237887ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70297884ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70357887ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70417890ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70477893ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70537896ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70597892ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70657893ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70717895ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70777895ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70837899ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70897901ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[70957906ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71017902ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71077905ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71137910ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71197911ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71257909ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71317911ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71377912ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71437914ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71497916ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71557918ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71617918ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71677924ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71737924ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71797923ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71857931ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71917928ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[71977931ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72037932ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72097930ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72157937ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72217938ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72277945ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72337947ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72397950ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72457950ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72517947ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72577947ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72637955ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72697956ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72757951ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72817955ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72877959ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72937964ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[72997960ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73057962ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73117966ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73177958ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73237968ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73297966ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73357967ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73417970ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73477969ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73537974ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73597974ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73657980ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73717974ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73777976ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73837982ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73897977ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[73957982ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74017988ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74077985ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74137991ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74197998ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74258015ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74318002ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74378007ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74438009ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74498011ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74558014ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74618038ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74678019ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74738018ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74798022ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74858023ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74918025ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[74978027ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75038029ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75098028ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75158036ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75218028ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75278032ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75338036ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75398046ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75458046ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75518044ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75578048ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75638053ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75698049ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75758053ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75818050ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75878058ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75938059ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[75998057ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76058061ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76118065ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76178068ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76238060ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76298064ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76358070ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76418065ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76478069ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76538072ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76598078ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76658073ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76718076ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76778071ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76838078ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76898079ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[76958085ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77018080ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77078089ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77138090ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77198090ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77258091ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77318090ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77378092ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77438095ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77498096ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77558098ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77618099ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77678101ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77738107ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77798110ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77858106ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77918115ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[77978109ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78038115ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78098122ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78158126ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78218127ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78278128ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78338125ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78398135ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78458131ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78518134ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78578140ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78638132ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78698142ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78758138ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78818141ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78878146ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78938149ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[78998151ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79058149ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79118154ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79178153ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79238155ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79298162ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79358162ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79418160ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79478165ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79538167ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79598173ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79658169ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79718172ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79778177ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79838179ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79898179ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[79958181ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80018184ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80078185ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80138177ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80198183ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80258182ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80318186ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80378190ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80438185ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80498189ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80558191ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80618194ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80678200ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80738195ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80798202ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80858208ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80918202ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[80978204ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81038210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81098213ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81158210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81218215ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81278216ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81338220ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81398223ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81458225ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81518228ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81578228ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81638232ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81698231ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81758234ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81818231ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81878237ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81938237ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[81998235ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82058245ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82118223ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82178226ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82238230ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82298229ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82358232ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82418236ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82478236ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82538234ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82598235ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82658237ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82718238ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82778243ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82838242ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82898242ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[82958245ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83018244ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83078247ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83138255ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83198260ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83258254ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83318253ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83378260ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83438264ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83498261ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83558266ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83618260ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83678264ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83738270ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83798268ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83858269ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83918272ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[83978272ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84038273ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84098263ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84158260ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84218263ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84278263ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84338267ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84398264ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84458262ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84518269ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84578268ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84638268ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84698266ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84758261ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84818265ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84878272ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84938278ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[84998272ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85058291ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85118283ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85178273ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85238283ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85298277ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85358286ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85418281ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85478275ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85538282ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85598283ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85658290ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85718291ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85778299ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85838289ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85898291ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[85958295ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86018293ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86078312ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86138312ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86198335ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86258310ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86318322ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86378329ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86438320ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86498327ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86558327ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86618331ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86678335ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86738335ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86798337ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86858339ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86918343ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[86978345ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87038346ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87098348ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87158350ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87218349ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87278352ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87338354ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87398360ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87458362ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87518364ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87578365ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87638370ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87698373ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87758374ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87818379ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87878375ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87938384ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[87998387ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88058385ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88118395ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88178390ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88238393ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88298394ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88358402ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88418413ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88478409ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88538412ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88598418ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88658422ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88718426ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88778425ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88838429ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88898422ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[88958431ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89018430ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89078425ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89138439ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89198438ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89258433ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89318434ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89378434ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89438438ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89498441ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89558443ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89618442ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89678447ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89738446ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89798449ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89858454ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89918452ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[89978452ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90038452ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90098458ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90158459ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90218459ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90278465ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90338462ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90398496ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90458499ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90518504ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90578503ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90638502ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90698504ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90758512ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90818511ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90878517ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90938520ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[90998520ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91058518ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91118523ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91178521ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91238519ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91298525ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91358529ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91418534ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91478537ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91538533ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91598538ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91658540ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91718552ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91778547ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91838548ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91898544ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[91958550ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92018552ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92078553ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92138554ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92198555ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92258556ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92318564ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92378558ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92438540ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92498550ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92558539ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92618546ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92678546ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92738549ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92798549ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92858555ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92918554ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[92978557ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93038557ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93098559ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93158557ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93218562ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93278560ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93338565ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93398563ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93458568ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93518575ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93578569ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93638574ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93698573ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93758575ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93818577ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93878577ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93938577ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[93998580ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94058587ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94118586ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94178585ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94238589ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94298594ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94358570ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94418568ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94478572ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94538573ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94598579ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94658574ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94718579ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94778578ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94838580ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94898585ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[94958583ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95018610ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95078596ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95138587ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95198588ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95258592ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95318589ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95378592ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95438597ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95498594ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95558598ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95618598ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95678602ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95738605ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95798603ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95858609ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95918612ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[95978611ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96038609ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96098620ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96158616ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96218617ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96278617ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96338625ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96398633ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96458632ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96518628ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96578635ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96638631ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96698631ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96758640ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96818635ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96878640ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96938641ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[96998636ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97058644ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97118651ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97178647ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97238644ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97298647ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97358649ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97418650ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97478650ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97538653ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97598654ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97658663ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97718661ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97778661ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97838662ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97898661ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[97958670ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98018669ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98078672ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98138668ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98198667ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98258684ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98318696ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98378694ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98438699ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98498706ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98558704ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98618720ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98678720ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98738718ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98798713ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98858714ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98918714ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[98978720ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99038722ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99098720ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99158724ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99218726ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99278737ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99338729ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99398732ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99458731ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99518737ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99578737ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99638739ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99698746ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99758748ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99818748ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99878749ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99938752ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[99998755ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100058757ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100118760ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100178763ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100238762ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100298747ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100358755ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100418752ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100478751ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100538756ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100598752ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100658752ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100718755ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100778759ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100838772ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100898769ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[100958768ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101018766ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101078767ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101138768ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101198777ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101258772ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101318773ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101378777ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101438778ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101498783ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101558788ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101618784ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101678783ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101738787ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101798787ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101858790ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101918796ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[101978798ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102038796ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102098801ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102158805ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102218811ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102278812ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102338813ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102398821ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102458818ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102518818ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102578825ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102638827ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102698825ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102758825ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102818828ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102878835ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102938832ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[102998835ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103058841ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103118834ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103178837ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103238839ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103298839ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103358841ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103418849ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103478848ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103538853ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103598852ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103658856ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103718855ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103778859ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103838860ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103898859ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[103958854ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104018865ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104078861ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104138864ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104198869ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104258843ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104318845ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104378842ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104438844ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104498845ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104558849ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104618848ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104678844ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104738848ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104798852ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104858849ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104918854ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[104978853ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105038855ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105098854ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105158858ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105218859ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105278859ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105338858ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105398860ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105458859ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105518855ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105578859ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105638862ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105698854ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105758862ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105818860ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105878862ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105938870ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[105998877ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106058875ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106118871ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106178869ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106238894ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106298905ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106358902ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106418903ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106478904ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106538903ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106598909ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106658912ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106718910ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106778918ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106838917ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106898914ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[106958919ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107018916ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107078922ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107138923ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107198921ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107258923ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107318927ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107378925ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107438930ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107498934ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107558940ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107618937ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107678936ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107738940ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107798940ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107858946ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107918945ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[107978946ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108038948ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108098948ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108158936ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108218936ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108278942ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108338939ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108398939ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108458940ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108518946ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108578942ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108638947ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108698943ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108758950ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108818948ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108878951ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108938950ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[108998951ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109058949ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109118957ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109178954ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109238958ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109298955ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109358961ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109418949ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109478956ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109538973ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109598965ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109658962ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109718965ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109778968ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109838967ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109898965ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[109958970ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110018968ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110078974ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110138979ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110198976ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110258981ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110318981ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110378986ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110438980ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110498981ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110558987ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110618988ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110678988ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110738987ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110798984ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110858989ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110918994ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[110978991ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111038994ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111098994ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111158997ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111218995ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111279001ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111338995ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111399001ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111459005ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111518997ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111579001ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111639005ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111699004ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111759004ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111819010ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111879009ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111939014ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[111999011ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112059010ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112119013ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112179021ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112239028ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112299030ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112359028ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112419025ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112479034ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112539026ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112599031ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112659028ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112719032ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112779031ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112839036ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112899033ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[112959036ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113019041ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113079039ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113139040ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113199041ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113259043ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113319051ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113379043ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113439048ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113499046ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113559048ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113619052ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113679057ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113739055ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113799058ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113859058ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113919061ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[113979061ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114039066ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114099086ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114159098ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114219087ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114279094ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114339097ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114399105ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114459104ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114519110ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114579109ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114639112ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114699115ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114759113ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114819119ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114879117ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114939122ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[114999121ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115059125ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115119129ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115179128ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115239135ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115299131ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115359129ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115419132ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115479133ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115539135ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115599140ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115659140ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115719142ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115779145ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115839143ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115899146ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[115959152ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116019150ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116079154ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116139155ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116199157ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116259155ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116319161ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116379163ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116439163ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116499161ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116559171ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116619165ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116679165ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116739168ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116799179ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116859176ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116919182ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[116979181ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117039186ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117099183ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117159188ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117219194ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117279194ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117339197ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117399198ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117459199ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117519203ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117579200ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117639201ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117699207ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117759209ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117819210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117879214ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117939212ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[117999217ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118059216ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118119199ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118179195ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118239201ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118299216ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118359205ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118419202ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118479201ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118539196ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118599206ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118659206ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118719212ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118779210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118839210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118899217ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[118959215ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119019219ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119079216ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119139221ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119199219ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119259216ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119319221ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119379223ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119439224ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119499227ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119559230ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119619227ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119679230ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119739229ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119799229ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119859227ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119919234ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[119979236ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120039246ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120099250ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120159255ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120219261ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120279254ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120339252ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120399253ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120459256ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120519260ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120579260ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120639264ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120699267ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120759274ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120819272ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120879269ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120939271ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[120999271ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121059276ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121119275ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121179279ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121239284ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121299281ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121359286ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121419287ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121479295ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121539292ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121599293ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121659290ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121719296ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121779293ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121839294ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121899295ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[121959289ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122019300ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122079292ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122139289ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122199293ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122259290ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122319308ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122379300ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122439303ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122499308ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122559307ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122619305ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122679311ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122739315ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122799313ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122859312ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122919313ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[122979314ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123039316ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123099314ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123159319ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123219324ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123279318ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123339318ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123399329ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123459327ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123519352ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123579332ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123639333ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123699331ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123759340ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123819340ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123879340ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123939350ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[123999342ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124059347ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124119347ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124179349ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124239353ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124299345ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124359351ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124419354ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124479351ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124539357ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124599360ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124659362ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124719355ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124779360ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124839356ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124899358ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[124959359ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125019362ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125079363ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125139368ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125199363ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125259373ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125319376ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125379371ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125439371ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125499373ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125559373ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125619377ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125679373ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125739380ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125799374ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125859381ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125919377ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[125979408ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126039381ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126099383ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126159387ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126219386ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126279384ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126339393ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126399391ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126459395ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126519402ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126579396ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126639403ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126699401ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126759402ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126819408ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126879401ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126939405ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[126999406ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127059407ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127119413ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127179409ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127239407ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127299416ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127359415ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127419414ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127479417ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127539417ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127599420ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127659418ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127719430ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127779433ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127839436ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127899438ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[127959442ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128019446ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128079451ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128139450ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128199458ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128259450ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128319461ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128379465ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128439467ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128499462ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128559479ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128619473ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128679484ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128739484ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128799486ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128859488ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128919493ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[128979494ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129039499ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129099502ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129159505ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129219512ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129279507ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129339511ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129399518ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129459525ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129519527ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129579530ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129639529ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129699534ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129759542ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129819549ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129879547ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129939552ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[129999552ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130059552ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130119570ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130179562ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130239564ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130299573ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130359569ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130419572ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130479569ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130539573ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130599580ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130659587ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130719587ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130779592ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130839593ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130899592ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[130959599ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131019597ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131079597ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131139604ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131199609ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131259608ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131319608ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131379609ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131439614ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131499613ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131559618ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131619620ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131679645ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131739644ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131799648ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131859649ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131919654ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[131979655ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132039658ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132099660ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132159665ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132219666ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132279664ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132339670ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132399670ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132459669ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132519674ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132579675ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132639685ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132699685ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132759688ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132819690ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132879690ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132939691ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[132999692ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133059696ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133119698ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133179703ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133239704ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133299713ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133359711ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133419712ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133479714ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133539721ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133599697ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133659685ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133719687ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133779687ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133839687ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133899694ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[133959693ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134019697ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134079699ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134139701ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134199712ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134259699ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134319706ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134379713ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134439701ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134499709ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134559709ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134619714ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134679716ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134739719ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134799713ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134859719ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134919726ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[134979719ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135039727ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135099725ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135159732ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135219730ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135279726ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135339734ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135399736ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135459740ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135519740ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135579739ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135639744ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135699742ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135759746ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135819748ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135879748ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135939753ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[135999753ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136059750ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136119758ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136179759ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136239768ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136299765ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136359766ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136419769ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136479771ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136539768ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136599769ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136659775ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136719773ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136779779ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136839783ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136899779ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[136959783ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137019792ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137079793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137139799ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137199786ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137259789ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137319793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137379790ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137439797ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137499797ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137559811ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137619813ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137679822ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137739820ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137799828ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137859819ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137919821ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[137979823ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138039827ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138099831ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138159832ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138219840ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138279838ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138339834ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138399840ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138459861ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138519852ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138579850ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138639846ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138699854ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138759854ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138819859ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138879865ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138939860ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[138999867ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139059870ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139119873ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139179871ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139239875ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139299882ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139359881ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139419877ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139479895ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139539901ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139599909ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139659911ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139719914ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139779915ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139839924ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139899925ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[139959931ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140019938ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140079935ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140139946ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140199947ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140259950ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140319950ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140379953ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140439956ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140499957ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140559954ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140619963ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140679958ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140739960ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140799964ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140859972ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140919972ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[140979971ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141039972ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141099979ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141159981ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141219984ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141279984ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141339985ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141399987ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141459958ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141519959ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141579955ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141639969ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141699963ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141759967ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141819967ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141879973ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141939972ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[141999975ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142059976ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142119976ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142179977ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142239975ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142299978ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142359982ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142419984ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142479993ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142539989ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142599985ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142659994ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142719985ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142779998ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142839989ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142900004ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[142960001ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143019993ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143079999ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143139999ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143199997ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143259998ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143320002ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143379999ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143440006ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143500002ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143560001ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143620002ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143680013ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143740007ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143800005ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143860011ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143920010ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[143980015ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144040015ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144100019ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144160016ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144220023ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144280018ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144340018ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144400017ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144460025ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144520023ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144580026ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144640030ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144700038ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144760035ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144820030ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144880033ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[144940034ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145000038ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145060038ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145120044ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145180042ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145240044ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145300045ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145360056ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145420054ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145480055ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145540058ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145600063ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145660060ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145720061ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145780059ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145840062ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145900072ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[145960071ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146020071ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146080075ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146140067ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146200073ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146260075ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146320079ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146380086ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146440084ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146500081ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146560085ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146620087ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146680097ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146740092ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146800092ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146860092ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146920097ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[146980097ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147040102ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147100102ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147160110ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147220106ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147280106ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147340117ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147400112ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147460117ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147520119ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147580122ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147640121ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147700122ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147760124ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147820125ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147880124ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[147940129ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148000141ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148060135ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148120136ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148180134ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148240138ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148300138ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148360154ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148420146ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148480144ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148540150ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148600177ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148660152ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148720155ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148780159ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148840155ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148900160ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[148960163ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149020160ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149080164ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149140170ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149200170ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149260200ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149320199ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149380200ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149440214ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149500208ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149560212ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149620215ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149680213ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149740214ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149800220ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149860223ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149920224ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[149980228ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150040226ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150100234ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150160246ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150220233ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150280240ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150340238ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150400246ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150460253ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150520243ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150580252ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150640251ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150700264ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150760271ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150820271ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150880271ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[150940281ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151000269ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151060278ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151120280ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151180283ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151240248ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151300249ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151360255ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151420252ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151480253ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151540256ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151600261ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151660263ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151720266ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151780265ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151840267ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151900267ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[151960263ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152020266ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152080270ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152140272ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152200274ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152260277ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152320271ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152380348ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152440283ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152500284ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152560281ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152620289ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152680290ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152740292ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152800291ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152860292ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152920297ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[152980301ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153040303ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153100299ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153160305ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153220310ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153280316ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153340322ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153400323ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153460322ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153520327ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153580322ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153640325ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153700324ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153760332ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153820332ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153880332ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[153940341ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154000341ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154060339ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154120340ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154180340ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154240346ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154300346ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154360358ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154420349ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154480350ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154540349ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154600354ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154660356ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154720360ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154780360ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154840369ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154900364ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[154960369ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155020372ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155080372ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155140374ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155200384ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155260386ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155320391ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155380391ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155440390ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155500394ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155560402ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155620402ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155680402ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155740404ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155800405ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155860416ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155920417ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[155980415ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156040429ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156100417ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156160419ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156220419ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156280418ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156340421ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156400439ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156460432ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156520430ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156580431ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156640439ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156700445ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156760452ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156820445ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156880447ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[156940450ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157000448ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157060455ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157120459ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157180424ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157240428ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157300427ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157360426ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157420430ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157480432ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157540430ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157600429ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157660426ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157720432ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157780439ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157840438ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157900437ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[157960440ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158020445ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158080441ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158140445ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158200444ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158260446ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158320448ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158380453ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158440450ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158500462ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158560459ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158620458ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158680462ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158740469ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158800463ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158860468ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158920467ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[158980474ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159040464ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159100469ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159160500ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159220495ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159280499ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159340500ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159400501ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159460505ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159520511ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159580511ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159640509ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159700509ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159760510ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159820515ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159880513ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[159940521ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160000521ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160060522ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160120524ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160180528ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160240524ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160300530ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160360534ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160420536ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160480539ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160540535ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160600536ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160660541ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160720547ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160780552ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160840547ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160900559ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[160960551ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161020551ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161080555ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161140558ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161200563ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161260563ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161320568ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161380568ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161440568ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161500570ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161560569ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161620578ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161680579ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161740578ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161800581ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161860584ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161920586ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[161980584ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162040589ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162100588ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162160592ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162220596ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162280593ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162340592ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162400607ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162460599ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162520606ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162580606ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162640607ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162700611ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162760617ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162820613ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162880616ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[162940618ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163000611ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163060586ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163120589ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163180589ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163240584ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163300586ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163360589ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163420584ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163480582ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163540596ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163600600ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163660593ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163720605ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163780593ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163840594ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163900605ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[163960604ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164020597ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164080617ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164140613ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164200610ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164260611ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164320609ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164380613ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164440610ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164500612ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164560614ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164620616ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164680620ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164740623ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164800620ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164860618ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164920630ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[164980621ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165040626ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165100627ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165160627ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165220626ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165280630ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165340628ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165400629ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165460632ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165520630ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165580634ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165640633ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165700634ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165760637ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165820639ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165880639ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[165940642ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166000647ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166060644ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166120643ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166180650ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166240648ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166300652ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166360655ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166420651ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166480651ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166540656ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166600649ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166660653ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166720652ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166780659ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166840655ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166900655ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[166960716ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167020721ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167080722ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167140727ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167200727ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167260731ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167320738ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167380734ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167440742ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167500740ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167560739ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167620745ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167680748ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167740750ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167800754ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167860753ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167920755ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[167980760ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168040768ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168100768ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168160768ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168220774ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168280775ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168340783ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168400780ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168460780ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168520782ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168580780ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168640787ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168700787ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168760797ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168820792ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168880793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[168940800ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169000794ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169060794ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169120802ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169180797ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169240802ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169300804ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169360803ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169420805ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169480808ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169540813ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169600813ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169660815ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169720820ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169780820ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169840821ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169900826ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[169960826ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170020829ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170080843ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170140829ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170200845ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170260853ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170320844ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170380844ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170440846ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170500844ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170560863ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170620851ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170680856ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170740864ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170800870ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170860870ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170920877ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[170980828ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171040829ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171100827ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171160837ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171220830ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171280830ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171340829ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171400835ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171460842ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171520841ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171580843ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171640845ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171700861ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171760848ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171820854ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171880853ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[171940856ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172000857ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172060858ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172120860ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172180863ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172240859ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172300879ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172360871ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172420867ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172480871ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172540872ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172600871ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172660875ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172720874ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172780879ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172840877ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172900795ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[172960788ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173020795ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173080791ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173140793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173200801ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173260794ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173320794ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173380805ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173440809ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173500802ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173560792ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173620792ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173680797ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173740791ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173800799ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173860793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173920801ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[173980799ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174040796ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174100797ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174160796ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174220793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174280796ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174340788ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174400792ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174460789ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174520793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174580790ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174640787ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174700785ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174760791ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174820792ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174880792ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[174940788ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175000792ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175060786ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175120791ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175180790ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175240792ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175300803ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175360789ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175420788ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175480789ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175540788ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175600785ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175660784ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175720781ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175780783ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175840784ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175900791ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[175960782ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176020938ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176080940ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176140938ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176200941ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176260944ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176320943ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176380942ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176440950ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176500950ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176560954ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176620966ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176680962ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176740962ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176800965ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176860967ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176920968ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[176980970ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177040980ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177100974ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177160980ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177220984ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177280993ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177340995ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177400994ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177460990ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177520995ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177580997ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177641000ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177701000ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177761005ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177821005ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177881013ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[177941010ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178001022ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178061021ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178121029ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178181031ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178241027ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178301035ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178361035ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178421036ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178481039ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178541044ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178601048ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178661044ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178721046ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178781047ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178841052ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178901054ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[178961055ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179021058ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179081060ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179141065ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179201072ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179261067ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179321074ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179381070ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179441073ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179501081ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179561074ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179621092ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179681084ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179741092ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179801090ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179861091ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179921122ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[179981126ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180041126ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180101127ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180161129ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180221134ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180281140ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180341140ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180401156ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180461142ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180521148ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180581149ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180641156ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180701156ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180761156ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180821161ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180881164ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[180941164ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181001169ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181061172ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181121173ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181181172ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181241182ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181301182ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181361186ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181421194ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181481195ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181541193ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181601197ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181661198ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181721204ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181781204ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181841210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181901215ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[181961190ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182021196ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182081198ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182141196ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182201198ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182261210ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182321203ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182381204ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182441211ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182501209ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182561214ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182621216ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182681219ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182741220ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182801223ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182861225ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182921223ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[182981229ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183041233ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183101244ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183161236ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183221244ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183281239ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183341242ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183401248ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183461249ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183521251ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183581252ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183641257ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183701258ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183761264ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183821262ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183881269ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[183941252ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184001253ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184061256ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184121253ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184181255ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184241257ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184301265ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184361270ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184421270ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184481271ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184541276ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184601277ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184661275ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184721289ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184781306ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184841287ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184901295ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[184961294ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185021293ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185081299ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185141297ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185201311ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185261300ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185321303ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185381304ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185441308ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185501316ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185561315ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185621313ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185681326ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185741319ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185801327ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185861329ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185921327ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[185981332ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186041323ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186101330ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186161325ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186221341ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186281334ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186341333ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186401334ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186461339ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186521341ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186581345ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186641343ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186701347ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186761349ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186821351ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186881353ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[186941355ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187001352ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187061361ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187121357ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187181360ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187241365ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187301363ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187361368ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187421381ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187481375ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187541373ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187601366ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187661385ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187721382ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187781378ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187841376ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187901404ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[187961383ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188021371ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188081372ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188141374ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188201373ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188261375ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188321383ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188381378ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188441383ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188501381ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188561394ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188621381ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188681385ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188741386ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188801399ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188861393ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188921403ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[188981394ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189041399ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189101397ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189161407ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189221411ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189281403ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189341403ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189401407ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189461415ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189521410ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189581406ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189641411ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189701413ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189761416ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189821418ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189881415ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[189941419ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190001433ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190061439ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190121440ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190181438ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190241445ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190301452ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190361459ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190421455ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190481463ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190541460ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190601466ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190661462ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190721467ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190781472ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190841469ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190901473ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[190961473ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191021478ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191081479ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191141474ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191201478ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191261489ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191321488ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191381487ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191441490ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191501489ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191561492ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191621493ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191681493ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191741493ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191801495ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191861498ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191921500ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[191981508ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192041509ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192101509ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192161509ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192221514ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192281515ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192341514ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192401521ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192461521ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192521520ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192581518ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192641526ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192701524ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192761525ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192821529ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192881536ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[192941529ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193001530ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193061534ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193121535ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193181541ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193241542ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193301544ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193361550ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193421547ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193481549ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193541548ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193601551ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193661549ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193721553ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193781554ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193841559ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193901561ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[193961561ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194021561ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194081562ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194141563ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194201569ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194261565ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194321574ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194381575ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194441573ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194501575ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194561587ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194621593ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194681583ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194741587ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194801581ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194861586ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194921584ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[194981584ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195041593ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195101588ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195161594ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195221593ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195281592ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195341593ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195401598ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195461599ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195521598ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195581605ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195641606ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195701605ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195761608ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195821611ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195881608ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[195941609ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196001574ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196061574ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196121581ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196181580ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196241578ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196301578ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196361582ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196421579ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196481580ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196541579ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196601588ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196661592ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196721580ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196781585ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196841588ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196901585ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[196961597ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197021587ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197081593ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197141603ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197201596ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197261594ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197321594ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197381595ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197441596ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197501596ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197561607ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197621601ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197681602ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197741602ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197801603ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197861602ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197921615ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[197981614ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198041621ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198101615ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198161619ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198221616ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198281623ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198341623ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198401619ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198461625ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198521629ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198581627ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198641619ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198701627ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198761631ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198821630ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198881633ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[198941629ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199001631ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199061633ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199121638ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199181636ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199241641ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199301641ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199361635ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199421640ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199481640ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199541642ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199601651ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199661648ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199721661ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199781646ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199841660ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199901675ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[199961671ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200021682ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200081680ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200141679ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200201679ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200261687ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200321680ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200381682ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200441684ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200501683ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200561688ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200621693ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200681691ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200741691ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200801691ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200861691ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200921696ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[200981703ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201041705ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201101696ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201161706ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201221704ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201281710ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201341702ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201401709ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201461713ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201521713ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201581714ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201641712ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201701716ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201761718ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201821719ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201881653ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[201941653ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202001655ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202061662ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202121657ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202181652ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202241655ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202301660ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202361664ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202421651ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202481659ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202541659ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202601661ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202661653ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202721658ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202781662ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202841661ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202901658ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[202961670ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203021660ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203081661ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203141665ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203201661ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203261668ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203321657ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203381661ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203441676ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203501663ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203561663ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203621672ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203681665ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203741659ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203801664ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203861673ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203921664ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[203981659ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204041666ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204101662ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204161667ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204221664ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204281667ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204341666ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204401667ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204461676ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204521665ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204581663ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204641671ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204701672ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204761671ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204821670ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204881673ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[204941674ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205001668ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205061667ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205121671ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205181676ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205241673ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205301671ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205361685ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205421677ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205481665ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205541672ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205601669ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205661673ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205721885ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205781880ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205841887ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205901888ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[205961890ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206021895ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206081897ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206141907ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206201907ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206261910ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206321915ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206381916ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206441923ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206501917ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206561926ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206621930ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206681930ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206741932ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206801932ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206861938ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206921936ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[206981958ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207041949ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207101953ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207161960ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207221961ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207281966ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207341968ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207401972ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207461975ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207521982ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207581983ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207641984ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207701987ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207761959ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207821962ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207881972ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[207941966ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208001968ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208061968ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208121976ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208181981ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208241981ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208301978ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208361988ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208421992ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208481991ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208541991ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208602003ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208661996ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208722004ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208782007ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208842004ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208902010ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[208962015ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209022012ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209082010ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209142018ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209202019ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209262024ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209322017ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209382028ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209442027ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209502028ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209562034ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209622034ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209682034ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209742019ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209802013ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209862010ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209922014ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[209982013ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210042013ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210102018ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210162020ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210222025ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210282027ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210342024ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210402029ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210462030ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210522041ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210582028ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210642036ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210702037ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210762039ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210822045ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210882042ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[210942042ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211002055ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211062047ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211122053ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211182058ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211242060ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211302057ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211362060ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211422061ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211482064ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211542061ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211602071ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211662069ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211722064ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211782063ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211842063ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211902058ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[211962065ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212022070ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212082078ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212142075ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212202078ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212262077ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212322076ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212382080ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212442081ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212502080ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212562084ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212622087ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212682084ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212742083ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212802087ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212862090ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212922086ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[212982092ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213042092ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213102090ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213162097ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213222098ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213282103ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213342101ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213402097ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213462100ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213522103ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213582114ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213642110ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213702117ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213762123ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213822120ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213882114ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[213942114ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214002118ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214062119ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214122124ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214182124ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214242124ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214302127ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214362130ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214422132ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214482136ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214542133ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214602137ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214662140ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214722140ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214782144ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214842152ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214902147ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[214962147ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215022148ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215082145ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215142149ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215202156ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215262151ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215322161ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215382156ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215442161ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215502160ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215562164ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215622187ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215682160ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215742165ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215802171ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215862133ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215922131ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[215982128ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216042134ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216102135ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216162129ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216222141ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216282140ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216342145ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216402138ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216462143ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216522153ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216582148ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216642148ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216702153ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216762157ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216822147ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216882154ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[216942155ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217002160ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217062154ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217122159ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217182151ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217242154ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217302158ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217362161ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217422162ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217482165ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217542173ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217602168ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217662169ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217722162ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217782169ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217842197ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217902201ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[217962204ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218022200ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218082205ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218142205ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218202209ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218262212ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218322212ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218382212ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218442218ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218502218ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218562226ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218622225ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218682221ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218742222ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218802223ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218862223ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218922221ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[218982228ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219042227ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219102226ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219162238ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219222231ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219282235ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219342236ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219402235ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219462242ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219522239ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219582242ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219642241ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219702245ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219762250ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219822256ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219882252ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[219942254ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220002256ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220062255ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220122261ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220182255ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220242259ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220302265ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220362279ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220422270ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220482267ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220542266ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220602272ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220662272ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220722271ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220782275ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220842276ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220902279ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[220962279ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221022281ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221082282ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221142285ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221202291ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221262287ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221322297ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221382298ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221442290ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221502294ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221562292ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221622294ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221682291ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221742295ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221802343ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221862349ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221922351ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[221982354ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222042357ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222102357ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222162360ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222222362ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222282364ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222342362ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222402369ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222462371ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222522374ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222582376ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222642379ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222702382ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222762385ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222822383ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222882388ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[222942389ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223002395ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223062397ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223122396ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223182406ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223242404ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223302405ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223362403ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223422412ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223482411ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223542411ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223602416ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223662415ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223722424ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223782424ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223842384ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223902373ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[223962379ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224022374ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224082376ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224142382ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224202383ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224262385ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224322386ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224382384ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224442391ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224502390ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224562400ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224622405ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224682413ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224742402ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224802400ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224862403ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224922409ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[224982421ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225042414ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225102410ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225162423ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225222417ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225282416ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225342419ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225402421ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225462422ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225522419ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225582428ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225642431ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225702429ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225762428ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225822454ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225882474ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[225942470ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226002472ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226062474ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226122473ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226182474ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226242479ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226302484ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226362487ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226422496ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226482493ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226542486ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226602493ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226662495ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226722498ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226782499ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226842500ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226902505ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[226962508ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227022508ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227082511ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227142513ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227202516ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227262512ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227322513ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227382530ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227442523ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227502515ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227562521ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227622529ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227682531ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227742533ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227802507ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227862507ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227922512ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[227982514ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228042513ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228102528ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228162517ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228222514ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228282528ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228342522ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228402522ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228462523ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228522522ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228582525ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228642536ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228702534ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228762533ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228822534ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228882534ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[228942530ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229002537ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229062539ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229122542ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229182538ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229242544ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229302544ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229362545ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229422543ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229482546ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229542546ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229602546ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229662550ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229722556ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229782561ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229842572ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229902564ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[229962572ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230022569ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230082578ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230142592ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230202576ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230262580ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230322583ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230382584ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230442584ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230502588ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230562590ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230622584ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230682587ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230742595ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230802594ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230862597ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230922595ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[230982600ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231042602ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231102605ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231162611ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231222607ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231282610ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231342609ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231402613ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231462611ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231522621ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231582619ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231642620ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231702619ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231762626ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231822624ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231882629ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[231942625ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232002631ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232062634ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232122640ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232182638ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232242635ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232302638ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232362648ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232422640ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232482638ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232542644ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232602649ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232662645ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232722652ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232782653ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232842655ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232902654ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[232962663ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233022660ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233082672ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233142663ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233202668ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233262667ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233322670ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233382678ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233442675ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233502675ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233562675ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233622676ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233682680ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233742688ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233802684ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233862688ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233922699ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[233982696ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234042691ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234102693ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234162694ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234222688ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234282697ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234342698ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234402702ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234462708ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234522711ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234582716ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234642613ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234702615ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234762614ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234822615ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234882613ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[234942614ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235002612ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235062611ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235122612ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235182612ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235242630ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235302611ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235362618ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235422610ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235482617ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235542612ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235602616ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235662613ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235722618ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235782619ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235842616ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235902618ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[235962614ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236022614ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236082618ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236142617ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236202624ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236262638ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236322632ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236382628ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236442632ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236502722ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236562732ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236622734ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236682734ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236742737ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236802742ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236862761ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236922753ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[236982754ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237042755ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237102758ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237162760ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237222772ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237282767ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237342771ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237402774ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237462782ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237522785ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237582790ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237642793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237702797ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237762793ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237822811ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237882800ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[237942811ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238002812ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238062817ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238122820ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238182825ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238242824ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238302825ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238362830ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238422834ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238482883ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238542890ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238602896ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238662899ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238722903ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238782915ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238842919ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238902914ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[238962920ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239022927ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239082930ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239142928ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239202933ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239262935ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239322940ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239382942ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239442943ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239502945ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239562945ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239622952ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239682961ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239742954ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239802962ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239862964ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239922964ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[239982964ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[240042972ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[240102969ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[240162976ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[240222978ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[240282983ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 +[240342984ms] [ERROR] WebSocket connection to 'wss://localhost:8081/app/app-key?protocol=7&client=js&version=8.4.0&flash=false' failed: Error in connection establishment: net::ERR_SSL_PROTOCOL_ERROR @ http://[::1]:5173/node_modules/.vite/deps/pusher-js.js?v=78e615f6:3255 diff --git a/.playwright-mcp/page-2026-07-29T23-25-52-490Z.yml b/.playwright-mcp/page-2026-07-29T23-25-52-490Z.yml new file mode 100644 index 0000000..63522ab --- /dev/null +++ b/.playwright-mcp/page-2026-07-29T23-25-52-490Z.yml @@ -0,0 +1,56 @@ +- generic [ref=e3]: + - generic [ref=e6]: + - heading "Stream Schedule" [level=2] [ref=e7] + - list [ref=e8]: + - listitem [ref=e9]: + - generic [ref=e10]: Now + - generic [ref=e12]: + - generic [ref=e13]: Main Stage + - generic [ref=e14]: Test Stream + - listitem [ref=e15]: + - generic [ref=e16]: Now + - generic [ref=e18]: + - generic [ref=e19]: Main Stage (Subtitled) + - generic [ref=e20]: Test Stream + - listitem [ref=e21]: + - generic [ref=e22]: Now + - generic [ref=e24]: + - generic [ref=e25]: Pop Quiz Hour + - generic [ref=e26]: Test Stream + - listitem [ref=e27]: + - generic [ref=e28]: 01:32 + - generic [ref=e30]: + - generic [ref=e31]: Artist Alley Showcase + - generic [ref=e32]: Test Stream + - listitem [ref=e33]: + - generic [ref=e34]: 02:32 + - generic [ref=e36]: + - generic [ref=e37]: Fursuit Parade + - generic [ref=e38]: Test Stream + - listitem [ref=e39]: + - generic [ref=e40]: 03:32 + - generic [ref=e42]: + - generic [ref=e43]: Voice Acting Workshop + - generic [ref=e44]: Test Stream + - generic [ref=e45]: + - generic [ref=e48]: + - heading "Livestream" [level=1] [ref=e55] + - paragraph [ref=e56]: All you need is a free Eurofurence Identity account to view live streams and recordings. No ticket and no membership required. + - generic [ref=e57]: + - link "Sign in with Eurofurence Identity" [ref=e58] [cursor=pointer]: + - /url: https://streaming.test/auth/login + - text: Sign in + - generic [ref=e59]: with Eurofurence Identity + - paragraph [ref=e60]: + - text: No Eurofurence Identity account yet? + - link "Create one for free" [ref=e61] [cursor=pointer]: + - /url: https://identity.eurofurence.org/auth/register + - text: . + - navigation "Footer" [ref=e62]: + - generic [ref=e63]: + - link "Support" [ref=e64] [cursor=pointer]: + - /url: https://help.eurofurence.org/contact/ + - link "Legal Notice" [ref=e65] [cursor=pointer]: + - /url: https://help.eurofurence.org/legal/imprint + - link "Privacy" [ref=e66] [cursor=pointer]: + - /url: https://help.eurofurence.org/legal/privacy \ No newline at end of file diff --git a/.playwright-mcp/page-2026-07-29T23-26-12-105Z.yml b/.playwright-mcp/page-2026-07-29T23-26-12-105Z.yml new file mode 100644 index 0000000..80470f3 --- /dev/null +++ b/.playwright-mcp/page-2026-07-29T23-26-12-105Z.yml @@ -0,0 +1,195 @@ +- generic [ref=f2e4]: + - navigation [ref=f2e5]: + - generic [ref=f2e7]: + - generic [ref=f2e8]: + - link [ref=f2e9] [cursor=pointer]: + - /url: https://streaming.test/ + - generic [ref=f2e15]: + - link "Browse" [ref=f2e16] [cursor=pointer]: + - /url: https://streaming.test/ + - link "Schedule" [ref=f2e20] [cursor=pointer]: + - /url: https://streaming.test/schedule + - link "Archive" [ref=f2e24] [cursor=pointer]: + - /url: https://streaming.test/archive + - button "T" [ref=f2e31] + - main [ref=f2e36]: + - generic [ref=f2e37]: + - generic [ref=f2e43]: + - paragraph [ref=f2e44]: + - generic [ref=f2e46]: Test Stream + - generic [ref=f2e47]: · + - generic [ref=f2e48]: On air now + - heading "Main Stage" [level=1] [ref=f2e49] + - paragraph [ref=f2e50]: Live coverage of the main convention stage featuring panels, performances, and special events throughout the day. + - generic [ref=f2e51]: + - generic [ref=f2e52]: live for 25:54:08 + - generic [ref=f2e53]: Up next 01:32 · Artist Alley Showcase + - generic [ref=f2e54]: + - link "Watch Test Stream" [ref=f2e55] [cursor=pointer]: + - /url: https://streaming.test/show/main-stage + - link "Full schedule" [ref=f2e58] [cursor=pointer]: + - /url: https://streaming.test/schedule + - tablist "Filter shows" [ref=f2e62]: + - tab "All" [selected] [ref=f2e63] + - tab "Live 3" [ref=f2e64]: + - text: Live + - generic [ref=f2e66]: "3" + - tab "Upcoming 5" [ref=f2e67]: + - text: Upcoming + - generic [ref=f2e68]: "5" + - tab "Archive 10" [ref=f2e69]: + - text: Archive + - generic [ref=f2e70]: "10" + - tab "Test Stream" [ref=f2e71] + - generic [ref=f2e73]: + - link "LIVE 25:54:08 Main Stage (Subtitled) Test Stream live 25:54:08" [ref=f2e75] [cursor=pointer]: + - /url: https://streaming.test/show/main-stage-subtitled + - generic [ref=f2e76]: + - generic [ref=f2e80]: LIVE + - generic [ref=f2e81]: 25:54:08 + - generic [ref=f2e87]: + - heading "Main Stage (Subtitled)" [level=3] [ref=f2e88] + - paragraph [ref=f2e89]: + - generic [ref=f2e90]: Test Stream + - generic [ref=f2e91]: · + - generic [ref=f2e92]: live 25:54:08 + - link "LIVE 3:54:08 Pop Quiz Hour Test Stream live 3:54:08" [ref=f2e94] [cursor=pointer]: + - /url: https://streaming.test/show/pop-quiz-hour + - generic [ref=f2e95]: + - generic [ref=f2e99]: LIVE + - generic [ref=f2e100]: 3:54:08 + - generic [ref=f2e106]: + - heading "Pop Quiz Hour" [level=3] [ref=f2e107] + - paragraph [ref=f2e108]: + - generic [ref=f2e109]: Test Stream + - generic [ref=f2e110]: · + - generic [ref=f2e111]: live 3:54:08 + - link "in 5m Artist Alley Showcase Test Stream Today at 01:32" [ref=f2e113] [cursor=pointer]: + - /url: https://streaming.test/show/artist-alley-showcase + - generic [ref=f2e114]: in 5m + - generic [ref=f2e124]: + - heading "Artist Alley Showcase" [level=3] [ref=f2e125] + - paragraph [ref=f2e126]: + - generic [ref=f2e127]: Test Stream + - generic [ref=f2e128]: · + - generic [ref=f2e129]: Today at 01:32 + - link "in 1h 5m Fursuit Parade Test Stream Today at 02:32" [ref=f2e131] [cursor=pointer]: + - /url: https://streaming.test/show/fursuit-parade + - generic [ref=f2e132]: in 1h 5m + - generic [ref=f2e142]: + - heading "Fursuit Parade" [level=3] [ref=f2e143] + - paragraph [ref=f2e144]: + - generic [ref=f2e145]: Test Stream + - generic [ref=f2e146]: · + - generic [ref=f2e147]: Today at 02:32 + - link "in 2h 5m Voice Acting Workshop Test Stream Today at 03:32" [ref=f2e149] [cursor=pointer]: + - /url: https://streaming.test/show/voice-acting-workshop + - generic [ref=f2e150]: in 2h 5m + - generic [ref=f2e160]: + - heading "Voice Acting Workshop" [level=3] [ref=f2e161] + - paragraph [ref=f2e162]: + - generic [ref=f2e163]: Test Stream + - generic [ref=f2e164]: · + - generic [ref=f2e165]: Today at 03:32 + - link "in 3h 5m Game Show Hour Test Stream Today at 04:32" [ref=f2e167] [cursor=pointer]: + - /url: https://streaming.test/show/game-show-hour + - generic [ref=f2e168]: in 3h 5m + - generic [ref=f2e178]: + - heading "Game Show Hour" [level=3] [ref=f2e179] + - paragraph [ref=f2e180]: + - generic [ref=f2e181]: Test Stream + - generic [ref=f2e182]: · + - generic [ref=f2e183]: Today at 04:32 + - link "in 4h 5m Closing Ceremony Test Stream Today at 05:32" [ref=f2e185] [cursor=pointer]: + - /url: https://streaming.test/show/closing-ceremony + - generic [ref=f2e186]: in 4h 5m + - generic [ref=f2e196]: + - heading "Closing Ceremony" [level=3] [ref=f2e197] + - paragraph [ref=f2e198]: + - generic [ref=f2e199]: Test Stream + - generic [ref=f2e200]: · + - generic [ref=f2e201]: Today at 05:32 + - link "23 40:00 Tech Team Debrief Today" [ref=f2e202] [cursor=pointer]: + - /url: https://streaming.test/archive/10 + - generic [ref=f2e203]: + - generic [ref=f2e207]: "23" + - generic [ref=f2e211]: 40:00 + - generic [ref=f2e217]: + - heading "Tech Team Debrief" [level=3] [ref=f2e218] + - paragraph [ref=f2e219]: Today + - link "3.5K 45:00 Behind the Scenes Documentary Today" [ref=f2e220] [cursor=pointer]: + - /url: https://streaming.test/archive/7 + - generic [ref=f2e221]: + - generic [ref=f2e225]: 3.5K + - generic [ref=f2e229]: 45:00 + - generic [ref=f2e235]: + - heading "Behind the Scenes Documentary" [level=3] [ref=f2e236] + - paragraph [ref=f2e237]: Today + - link "19.9K 1:00:00 Closing Ceremony 2024 Yesterday" [ref=f2e238] [cursor=pointer]: + - /url: https://streaming.test/archive/6 + - generic [ref=f2e239]: + - generic [ref=f2e243]: 19.9K + - generic [ref=f2e247]: 1:00:00 + - generic [ref=f2e253]: + - heading "Closing Ceremony 2024" [level=3] [ref=f2e254] + - paragraph [ref=f2e255]: Yesterday + - link "6.8K 1:00:00 Guest of Honor Interview 2 days ago" [ref=f2e256] [cursor=pointer]: + - /url: https://streaming.test/archive/5 + - generic [ref=f2e257]: + - generic [ref=f2e261]: 6.8K + - generic [ref=f2e265]: 1:00:00 + - generic [ref=f2e271]: + - heading "Guest of Honor Interview" [level=3] [ref=f2e272] + - paragraph [ref=f2e273]: 2 days ago + - link "12.6K 1:30:00 Dance Competition Finals 3 days ago" [ref=f2e274] [cursor=pointer]: + - /url: https://streaming.test/archive/4 + - generic [ref=f2e275]: + - generic [ref=f2e279]: 12.6K + - generic [ref=f2e283]: 1:30:00 + - generic [ref=f2e289]: + - heading "Dance Competition Finals" [level=3] [ref=f2e290] + - paragraph [ref=f2e291]: 3 days ago + - link "8.9K 3:00:00 Art Auction Live 4 days ago" [ref=f2e292] [cursor=pointer]: + - /url: https://streaming.test/archive/3 + - generic [ref=f2e293]: + - generic [ref=f2e297]: 8.9K + - generic [ref=f2e301]: 3:00:00 + - generic [ref=f2e307]: + - heading "Art Auction Live" [level=3] [ref=f2e308] + - paragraph [ref=f2e309]: 4 days ago + - link "28.5K 2:00:00 Fursuit Parade 5 days ago" [ref=f2e310] [cursor=pointer]: + - /url: https://streaming.test/archive/2 + - generic [ref=f2e311]: + - generic [ref=f2e315]: 28.5K + - generic [ref=f2e319]: 2:00:00 + - generic [ref=f2e325]: + - heading "Fursuit Parade" [level=3] [ref=f2e326] + - paragraph [ref=f2e327]: 5 days ago + - 'link "4.5K 1:30:00 Panel: Animation in the Fandom 6 days ago" [ref=f2e328] [cursor=pointer]': + - /url: https://streaming.test/archive/8 + - generic [ref=f2e329]: + - generic [ref=f2e333]: 4.5K + - generic [ref=f2e337]: 1:30:00 + - generic [ref=f2e343]: + - 'heading "Panel: Animation in the Fandom" [level=3] [ref=f2e344]' + - paragraph [ref=f2e345]: 6 days ago + - link "15.2K 1:30:00 Opening Ceremony 2024 1 week ago" [ref=f2e346] [cursor=pointer]: + - /url: https://streaming.test/archive/1 + - generic [ref=f2e347]: + - generic [ref=f2e351]: 15.2K + - generic [ref=f2e355]: 1:30:00 + - generic [ref=f2e361]: + - heading "Opening Ceremony 2024" [level=3] [ref=f2e362] + - paragraph [ref=f2e363]: 1 week ago + - link "156 1:00:00 Staff Meeting Recording 1 week ago" [ref=f2e364] [cursor=pointer]: + - /url: https://streaming.test/archive/9 + - generic [ref=f2e365]: + - generic [ref=f2e369]: "156" + - generic [ref=f2e373]: 1:00:00 + - generic [ref=f2e379]: + - heading "Staff Meeting Recording" [level=3] [ref=f2e380] + - paragraph [ref=f2e381]: 1 week ago + - contentinfo [ref=f2e382]: + - generic [ref=f2e384]: + - generic [ref=f2e385]: Eurofurence Streaming + - generic [ref=f2e392]: Made with ♥ by the Video Team \ No newline at end of file diff --git a/.playwright-mcp/page-2026-07-29T23-26-43-617Z.yml b/.playwright-mcp/page-2026-07-29T23-26-43-617Z.yml new file mode 100644 index 0000000..9d8e487 --- /dev/null +++ b/.playwright-mcp/page-2026-07-29T23-26-43-617Z.yml @@ -0,0 +1,69 @@ +- generic [ref=f3e4]: + - navigation [ref=f3e5]: + - generic [ref=f3e7]: + - generic [ref=f3e8]: + - link [ref=f3e9] [cursor=pointer]: + - /url: https://streaming.test/ + - generic [ref=f3e15]: + - link "Browse" [ref=f3e16] [cursor=pointer]: + - /url: https://streaming.test/ + - link "Schedule" [ref=f3e20] [cursor=pointer]: + - /url: https://streaming.test/schedule + - link "Archive" [ref=f3e24] [cursor=pointer]: + - /url: https://streaming.test/archive + - button "T" [ref=f3e31] + - main [ref=f3e36]: + - generic [ref=f3e37]: + - generic [ref=f3e38]: + - generic [ref=f3e39]: + - paragraph [ref=f3e40]: Programme guide + - heading "What's on, channel by channel" [level=1] [ref=f3e41] + - paragraph [ref=f3e42]: Every channel on one time axis. Blocks in colour are on air now, outlined blocks are still to come. + - button "Today Thu 30 Jul" [ref=f3e44]: + - text: Today + - generic [ref=f3e45]: Thu 30 Jul + - generic [ref=f3e46]: + - generic [ref=f3e48]: + - generic [ref=f3e49]: + - generic [ref=f3e50]: Channel + - generic [ref=f3e51]: 01:00 + - generic [ref=f3e53]: 02:00 + - generic [ref=f3e55]: 03:00 + - generic [ref=f3e57]: 04:00 + - generic [ref=f3e59]: 05:00 + - generic [ref=f3e61]: 06:00 + - generic [ref=f3e63]: + - generic [ref=f3e64]: + - generic [ref=f3e65]: Test Stream + - generic [ref=f3e66]: Main channel + - generic: + - link "Artist Alley Showcase 01:32–02:32" [ref=f3e79] [cursor=pointer]: + - /url: https://streaming.test/show/artist-alley-showcase + - generic [ref=f3e80]: Artist Alley Showcase + - generic [ref=f3e81]: 01:32–02:32 + - link "Fursuit Parade 02:32–03:32" [ref=f3e82] [cursor=pointer]: + - /url: https://streaming.test/show/fursuit-parade + - generic [ref=f3e83]: Fursuit Parade + - generic [ref=f3e84]: 02:32–03:32 + - link "Voice Acting Workshop 03:32–04:32" [ref=f3e85] [cursor=pointer]: + - /url: https://streaming.test/show/voice-acting-workshop + - generic [ref=f3e86]: Voice Acting Workshop + - generic [ref=f3e87]: 03:32–04:32 + - link "Game Show Hour 04:32–05:32" [ref=f3e88] [cursor=pointer]: + - /url: https://streaming.test/show/game-show-hour + - generic [ref=f3e89]: Game Show Hour + - generic [ref=f3e90]: 04:32–05:32 + - link "Closing Ceremony 05:32–06:32" [ref=f3e91] [cursor=pointer]: + - /url: https://streaming.test/show/closing-ceremony + - generic [ref=f3e92]: Closing Ceremony + - generic [ref=f3e93]: 05:32–06:32 + - generic [ref=f3e94]: + - generic [ref=f3e95]: On air + - generic [ref=f3e97]: Starting soon + - generic [ref=f3e99]: Scheduled + - generic [ref=f3e101]: Ended + - generic [ref=f3e103]: Empty row space means the channel is dark. + - contentinfo [ref=f3e104]: + - generic [ref=f3e106]: + - generic [ref=f3e107]: Eurofurence Streaming + - generic [ref=f3e114]: Made with ♥ by the Video Team \ No newline at end of file diff --git a/.playwright-mcp/page-2026-07-29T23-27-59-669Z.yml b/.playwright-mcp/page-2026-07-29T23-27-59-669Z.yml new file mode 100644 index 0000000..672bedd --- /dev/null +++ b/.playwright-mcp/page-2026-07-29T23-27-59-669Z.yml @@ -0,0 +1,71 @@ +- generic [ref=f5e4]: + - navigation [ref=f5e5]: + - generic [ref=f5e7]: + - generic [ref=f5e8]: + - link [ref=f5e9] [cursor=pointer]: + - /url: https://streaming.test/ + - generic [ref=f5e15]: + - link "Browse" [ref=f5e16] [cursor=pointer]: + - /url: https://streaming.test/ + - link "Schedule" [ref=f5e20] [cursor=pointer]: + - /url: https://streaming.test/schedule + - link "Archive" [ref=f5e24] [cursor=pointer]: + - /url: https://streaming.test/archive + - button "T" [ref=f5e31] + - main [ref=f5e36]: + - generic [ref=f5e37]: + - generic [ref=f5e38]: + - generic [ref=f5e39]: + - paragraph [ref=f5e40]: Programme guide + - heading "What's on, channel by channel" [level=1] [ref=f5e41] + - paragraph [ref=f5e42]: Every channel on one time axis. Blocks in colour are on air now, outlined blocks are still to come. + - generic [ref=f5e43]: + - button "Wed 29 Jul" [ref=f5e44] + - button "Today Thu 30 Jul" [ref=f5e45]: + - text: Today + - generic [ref=f5e46]: Thu 30 Jul + - generic [ref=f5e47]: + - generic [ref=f5e49]: + - generic [ref=f5e50]: + - generic [ref=f5e51]: Channel + - generic [ref=f5e52]: 01:00 + - generic [ref=f5e54]: 02:00 + - generic [ref=f5e56]: 03:00 + - generic [ref=f5e58]: 04:00 + - generic [ref=f5e60]: 05:00 + - generic [ref=f5e62]: 06:00 + - generic [ref=f5e64]: + - generic [ref=f5e65]: + - generic [ref=f5e66]: Test Stream + - generic [ref=f5e67]: Main channel + - generic: + - link "Artist Alley Showcase 01:32–02:32" [ref=f5e80] [cursor=pointer]: + - /url: https://streaming.test/show/artist-alley-showcase + - generic [ref=f5e81]: Artist Alley Showcase + - generic [ref=f5e82]: 01:32–02:32 + - link "Fursuit Parade 02:32–03:32" [ref=f5e83] [cursor=pointer]: + - /url: https://streaming.test/show/fursuit-parade + - generic [ref=f5e84]: Fursuit Parade + - generic [ref=f5e85]: 02:32–03:32 + - link "Voice Acting Workshop 03:32–04:32" [ref=f5e86] [cursor=pointer]: + - /url: https://streaming.test/show/voice-acting-workshop + - generic [ref=f5e87]: Voice Acting Workshop + - generic [ref=f5e88]: 03:32–04:32 + - link "Game Show Hour 04:32–05:32" [ref=f5e89] [cursor=pointer]: + - /url: https://streaming.test/show/game-show-hour + - generic [ref=f5e90]: Game Show Hour + - generic [ref=f5e91]: 04:32–05:32 + - link "Closing Ceremony 05:32–06:32" [ref=f5e92] [cursor=pointer]: + - /url: https://streaming.test/show/closing-ceremony + - generic [ref=f5e93]: Closing Ceremony + - generic [ref=f5e94]: 05:32–06:32 + - generic [ref=f5e95]: + - generic [ref=f5e96]: On air + - generic [ref=f5e98]: Starting soon + - generic [ref=f5e100]: Scheduled + - generic [ref=f5e102]: Ended + - generic [ref=f5e104]: Empty row space means the channel is dark. + - contentinfo [ref=f5e105]: + - generic [ref=f5e107]: + - generic [ref=f5e108]: Eurofurence Streaming + - generic [ref=f5e115]: Made with ♥ by the Video Team \ No newline at end of file diff --git a/.playwright-mcp/page-2026-07-29T23-28-15-139Z.yml b/.playwright-mcp/page-2026-07-29T23-28-15-139Z.yml new file mode 100644 index 0000000..7859351 --- /dev/null +++ b/.playwright-mcp/page-2026-07-29T23-28-15-139Z.yml @@ -0,0 +1,52 @@ +- generic [ref=f5e4]: + - navigation [ref=f5e5]: + - generic [ref=f5e7]: + - generic [ref=f5e8]: + - link [ref=f5e9] [cursor=pointer]: + - /url: https://streaming.test/ + - generic [ref=f5e15]: + - link "Browse" [ref=f5e16] [cursor=pointer]: + - /url: https://streaming.test/ + - link "Schedule" [ref=f5e20] [cursor=pointer]: + - /url: https://streaming.test/schedule + - link "Archive" [ref=f5e24] [cursor=pointer]: + - /url: https://streaming.test/archive + - button "T" [ref=f5e31] + - main [ref=f5e36]: + - generic [ref=f5e37]: + - generic [ref=f5e38]: + - generic [ref=f5e39]: + - paragraph [ref=f5e40]: Programme guide + - heading "What's on, channel by channel" [level=1] [ref=f5e41] + - paragraph [ref=f5e42]: Every channel on one time axis. Blocks in colour are on air now, outlined blocks are still to come. + - generic [ref=f5e43]: + - button "Wed 29 Jul" [active] [ref=f5e44] + - button "Today Thu 30 Jul" [ref=f5e45]: + - text: Today + - generic [ref=f5e46]: Thu 30 Jul + - generic [ref=f5e47]: + - generic [ref=f5e49]: + - generic [ref=f5e50]: + - generic [ref=f5e51]: Channel + - generic [ref=f5e116]: 21:00 + - generic [ref=f5e118]: 22:00 + - generic [ref=f5e120]: 23:00 + - generic [ref=f5e122]: 00:00 + - generic [ref=f5e64]: + - generic [ref=f5e65]: + - generic [ref=f5e66]: Test Stream + - generic [ref=f5e67]: Main channel + - link "Pop Quiz Hour 21:32–00:32 · live" [ref=f5e132] [cursor=pointer]: + - /url: https://streaming.test/show/pop-quiz-hour + - generic [ref=f5e133]: Pop Quiz Hour + - generic [ref=f5e134]: 21:32–00:32 · live + - generic [ref=f5e95]: + - generic [ref=f5e96]: On air + - generic [ref=f5e98]: Starting soon + - generic [ref=f5e100]: Scheduled + - generic [ref=f5e102]: Ended + - generic [ref=f5e104]: Empty row space means the channel is dark. + - contentinfo [ref=f5e105]: + - generic [ref=f5e107]: + - generic [ref=f5e108]: Eurofurence Streaming + - generic [ref=f5e115]: Made with ♥ by the Video Team \ No newline at end of file diff --git a/.playwright-mcp/page-2026-07-29T23-28-49-819Z.yml b/.playwright-mcp/page-2026-07-29T23-28-49-819Z.yml new file mode 100644 index 0000000..77181be --- /dev/null +++ b/.playwright-mcp/page-2026-07-29T23-28-49-819Z.yml @@ -0,0 +1,13 @@ +- generic [ref=f7e3]: + - generic [ref=f7e4]: "[plugin:vite:vue] Element is missing end tag." + - generic [ref=f7e5]: /Users/martin/Projects/Eurofurence/ef-streaming/resources/js/Layouts/AuthenticatedLayout.vue:22:7 + - generic [ref=f7e6]: "20 |
21 | 22 |