You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The services getter on the Browser class claims to return the class Service, when it actually returns plain objects which mostly happens to line up with that class.
Looking into the code, this issue runs deeper the return value of buildServicesFor inside the Browser class is returning KeyValue objects, which is then cast to Service, with the remaining logic assuming it is of type Service.
The text was updated successfully, but these errors were encountered:
The
services
getter on theBrowser
class claims to return the classService
, when it actually returns plain objects which mostly happens to line up with that class.Looking into the code, this issue runs deeper the return value of
buildServicesFor
inside theBrowser
class is returningKeyValue
objects, which is then cast toService
, with the remaining logic assuming it is of typeService
.The text was updated successfully, but these errors were encountered: