Skip to content

0.66.0

Compare
Choose a tag to compare
@mattieruth mattieruth released this 07 Jun 18:44
· 210 commits to daily-js-releases since this release

Bugfixes

  • Fixed an issue where the call machine was not loading inside webviews on iOS 16.
  • Improved handling of an underlying Chrome bug with regards to screensharing. We have witnessed issues when sharing a tab with audio on Chrome where the audio track will end when switching which tab is shared using Chrome’s built-in “Share this tab instead” button. Previously, when this happened we would end the screenshare. Now, we will send a nonfatal-error (see example below) but will not end the screenshare so that video can continue. However, a user will have to restart the screenshare in order to recover audio. We have filed an issue with Chromium.
    {
      "action": "nonfatal-error",
      "type": "screen-share-error",
      "errorMsg": "Error with ScreenShare audio",
      "details": {
        "sourceError": "audio track ended unexpectedly"
      }
    }