1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00

Fixed console errors

This commit is contained in:
Michael Hollister 2025-01-08 22:07:40 -06:00
parent 0d444239f0
commit 6b287ad4a6

View file

@ -97,7 +97,7 @@ function registerService(method: string, callback: (message: any) => void, subsc
method: method,
parameters: {},
onSuccess: (message: any) => {
if (message.value.subscribed === true) {
if (message.value?.subscribed === true) {
console.log(`Main: Registered ${method} handler with service`);
}
else {