Ville Säävuori
Ville Säävuori
Thank You for working on this 🙏 I just tested this with `django==4.1.1`, `channels==4.0.b1`, `channels-redis==4.0.0b2` and `asgiref==3.5.2`, still getting the same erros. Not sure if my test code is wrong...
WebsocketCommunicator is [documented in the the testing docs](https://channels.readthedocs.io/en/latest/topics/testing.html#websocketcommunicator). I tried simplifying the setup to not use the middleware but couldn't figure out a way that would work since almost all...
Sorry for the slow response. I finally figured it out. The tests actually work, it's just that pytest for some reason displays a ton of all kinds of errors when...
I’ve written some tips for optimizing the performance: https://til.unessa.net/vue/vue-devtools-performance/ However, this ticket is spesifically about _other_ performance issues and maybe providing a UI for disabling the extension alltogether (in an...
I bumped into the same issue, also getting `ReferenceError: global is not defined` and `ReferenceError: process is not defined` (both which can be overrided in vite config `define`).
Seems that there's already a PR that fixes this: https://github.com/aadsm/jsmediatags/pull/150
Opening above 1s test file with following code: ```py from tinytag import TinyTag tag2 = TinyTag.get('test.mp3') print(tag2) ``` Outputs: ```txt 'Found id3 v2.4' 'Found id3 Frame TXXX at 20-38 of...
I'm not too familiar with ID3 tags nor this repo but mapping `"TDRC": "year"` in `FRAME_ID_TO_FIELD` ( https://github.com/devsnd/tinytag/blob/master/tinytag/tinytag.py#L484) seems to fix the issue. Not sure if it has any side...
I created a PR for the fix. The tests broke with the change because few of the sample mp3:s had the TDRC frame and did not previously find a year...
Had this same issue. Duplicating `buttonsSM`, `buttonsMD` and `buttonsXS` settings works or setting `toolbarAdaptive: false` as mentioned above. Still, I believe this should be marked as a bug (if only...