Shuttleu

Results 10 comments of Shuttleu

Had a thought they might be, Not entirely to sure where to start looking, otherwise I'd look into it myself.

> Because of: > 1. inability to get the generated id on record creation (mysql does not support `RETURNING`) - [Create returns "id: 0" when id type is set to...

> > Maybe we can query the database for the row we just inserted, and return that rather than relying on RETURNING? > > Am I missing something or how...

I believe it was 8c59eef257bcef9d9866ed7c009784d6b586c77a which has introduced this bug. Building the commit before, allows the extension to work as expected, but since this commit, local domains no longer work.

Current solution is to either remove your current extension, install [V2022.10.1](https://github.com/bitwarden/clients/releases/tag/browser-v2022.10.1) and prevent it from updating. Or build commit 94e9744d0603f46fd3244d935a0e4fe9baf10e30 and install that one (I don't believe manually installed extensions...

> setting my matching rule to either `host` or `exact` does work for local hostnames, but breaks regular domains... > > is there a way to get both to work?...

You only need to do it in the accounts with a local hostname. That is currently the only way to get it working.

Current solution is to either remove your current extension, install [V2022.10.1](https://github.com/bitwarden/clients/releases/tag/browser-v2022.10.1) and prevent it from updating. Or build commit 94e9744d0603f46fd3244d935a0e4fe9baf10e30 and install that one (I don't believe manually installed extensions...

To give a small update on this, I have found that the web container is giving the following error when trying to download a file. ```JSON { "EventId":1, "LogLevel":"Error", "Category":"Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware",...

In `Web/Resgrid.WebCore/Areas/User/Controllers/DispatchController.cs:GetCallFile`, changing `if (attachment.Call.DepartmentId != DepartmentId)` to `if (attachment == null || attachment.Call == null || attachment.Call.DepartmentId != DepartmentId)` gives me a 404, confirming that `attachment` or `attachment.Call` is...