Brian Weasner

Results 14 comments of Brian Weasner

Ended up fixing in my code with the following. (NOTE: This issue should still be fixed in the plugin) // On Successful Response: ```ts if (req.responseType === 'blob' && typeof...

Turns out that this is expected behavior within the plugin for a reason, even though it's not documented anywhere (as far as I can tell). When passing Javascript Objects from...

Agreed, I feel that if this is added as a flag it should be converted back to a blob by default. A `getAsBase64` flag which by default is false would...

@ciccilleju Have you tried modifying your http "Accept" header to be like this: `Accept: application/json, text/plain, */*` @ed-turner Your issue does not seem related to ciccilleju's issue. You are having...

@IT-MikeS This issue and #2022 are similar but not the same. iOS is broken on lock, not just when locking to 'landscape' because the Landscape Values returned by different native...

This issue would be resolved by making a separate case statement for "landscape" here: https://github.com/ionic-team/capacitor-plugins/blob/be3dd6889b5d147cd43ff17ae2cfdb936a146a34/screen-orientation/ios/Sources/ScreenOrientationPlugin/ScreenOrientation.swift#L87 And returning [UIInterfaceOrientationMask](https://developer.apple.com/documentation/uikit/uiinterfaceorientationmask).[landscape](https://developer.apple.com/documentation/uikit/uiinterfaceorientationmask/1623106-landscape)

This is not completed and the linked ticket does not describe the same problem.

@IT-MikeS Is there any eta for when my pr can get looked at, merged and released? I ask because it has been a couple of months since the issue has...

Looks like my Pr has been merged into the 5.x branch! Thank you @IT-MikeS If you don't mind me asking how long until a new version is published? I assume...

I had this exact same issue, but on an existing monorepo project where I didn't even update firebase. We use Nx, and after clearing the nx cache via `nx reset`...