Matt K
Matt K
This bug still exists. https://github.com/MindscapeHQ/raygun4net/blob/fefc40dc0e5d40691b968c6fa69ab60184457293/Mindscape.Raygun4Net.AspNetCore/RaygunClient.cs#L254 Additionally, this bug also means that Message.Details.Response is never populated, since BuildResponseMessage() is called after BuildRequestMessage() sets _currentHttpContext.Value to null. What do we need to...
As best I can tell, this bug appears to have been added by the following commit. https://github.com/MindscapeHQ/raygun4net/commit/71940843fc8c4c985cd8d7be1b91df8bdfa87aed#diff-9e319763ead81dded08bb3933104e9620f1d2b94ab7c72cfa2f731650d88b2ecR377 Then it seems to have been carried along when creating the ASP.NET Core...
This is a problem, since the thread that performs the async operation may not be the same thread that queued the operation. If not, the variables will be null, and...
I created a PR with a couple items, but I think there is still an over-arching issue to resolve. While the ASP.NET Core version might be fixed by the PR,...
This would be a really nice addition! The easiest way I have found to adjust the `LIMIT` manually when you are looking at a table is to click the gear...
@hamen Thanks for doing the 0.5 release! It seems to be working for me.
I'm seeing the same issue on a simple `git difftool` command. I'm currently running macOS 10.14.1 Mojave. Before upgrading to Mojave, I had been successfully using this .gitconfig file: ```...
@yousseb Thanks for the updated build! Meld successfully starts without a wrapper script, so that's great news. Running `ps` now shows the following: ``` /Applications/Meld.app/Contents/MacOS/Meld /var/folders/d_/hrd5rw9j3j90q4bxmyvzx4p80000gn/T//awpnka_test.txt test.txt ``` However, something...
I finally got Meld working with local paths with the following `.gitconfig` file that runs `Meld` directly instead of using `open`: ``` [diff] tool = meld [difftool] prompt = false...
I just ran into this issue with the Zoom Video SDK for Web ([link](https://developers.zoom.us/docs/video-sdk/web/)). This JS library allows websites to embed video chat into a webpage. However, it has limited...