Benjamin Buchfink
Benjamin Buchfink
When the "Collapsing Console Sections Plugin" is used the section headers show white text in light grey background. Also the "Show Details" / "Hide Details" Buttons are dark grey on...
From DavMail logs: ```log 2021-05-20 09:39:39,384 DEBUG [CaldavConnection-62713] davmail.exchange.ews.EWSMethod - The server cannot service this request right now. Try again later. 2021-05-20 09:39:39,384 ERROR [CaldavConnection-62713] davmail.exchange.ExchangeSession - Unable to parse...
When using OpenJDK-14 instead von Java SDK 1.8 there are build errors: src\java\davmail\exchange\auth\O365InteractiveJSLogger.java Error:(23, 27) java: package netscape.javascript does not exist src\java\davmail\exchange\auth\O365InteractiveAuthenticatorFrame.java Error:(83, 62) java: package sun.net.www.protocol.https does not exist
Sadly the `Database` class from `Dapper.Rainbow` uses a `DbConnection` instead of a more accessable `IDbConnection`. [here](https://github.com/DapperLib/Dapper/blob/ca00feeb5fafe5262166689c0bec2b80b53add4e/Dapper.Rainbow/Database.cs#L191) This prevents from using alternative implementations.
We have a legacy db with very long Ids. Example: 301000000003 So the POCO looks like this: ```C# public class User { public long Id { get; set; } //...
There seems to be a problem with `LayoutRoot.ActiveContent` beeing `null` after adding an anchored doc. This is what I know so far: `DockingManager.AnchorablesSourceElementsChanged` will create a new `LayoutPanel` to host...
Not sure if it is meant to be used like this, but after updating an existing application the `ClientSecret` is changed. ```C# var app = await _apps.GetAsync(appId); var param =...
When using the `IApplicationService.GetApplicationsAsync` method, the result list contains `ApplicationInfo` instances with 0 `Permissions` and `RedirectUris`.
In the README.MD is this example ```C# [HttpGet(Name="GetAllModelsRoute")] public async Task GetAllModels() { //... snip .. // } ``` But how would you implement the `AddLinksAsync` part? As far as...