duydang
duydang
Greetings! I'd like to make an issue of when I open a file by CHADTree, my file is loaded into buffer but its name is converted to lowercase, so once...
Difference from #713: correct the result returned from `RemoveXEventListener` methods. #713 always returns `true` (after function null check) instead of the result of `List.Remove`.
I'm using `WillAnswer` in my client RPC event handler but the server somehow gets `Answer not handled` error. ```csharp Alt.OnScriptRPC += async (scriptRpcEvent, name, args, answerId) => { scriptRpcEvent.WillAnswer(); await...
RPC event handler seems not to support custom `IMValueAdapter` registered with `Alt.RegisterMValueAdapter` yet. For now, it always deserializes client object to a `Dictionary`.
As for now, the `Alt.EmitClients` takes `IPlayer[]` as its first argument. It seems better to prefer `IEnumerable` here, so in piece of code like below example can avoid creating a...
In my code, I found out that a `Func` is crashing the game when it gets executed. I'm able to reproduce the crash with the minimal code below. Nothing related...
This PR adds Try-prefixed methods, including: `TryConstruct`, `TryExecute`, `TryExtract`.
### Describe the bug Wrapping an `img` as a Svelte component results in `onload="this.__e=event" onerror="this.__e=event"` generated in HTML output. It causes CSP issue related to inline execution. Below is my...