mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
feat: Use Debug Command Handler for Dalamud Commands (#2018)
* feat: new command handler that works off a hook * cr comment * Use ClientStructs for sig
This commit is contained in:
parent
9de58b0cb9
commit
0fb7585973
2 changed files with 30 additions and 57 deletions
|
|
@ -158,7 +158,7 @@ public static class Util
|
|||
var asm = typeof(Util).Assembly;
|
||||
var attrs = asm.GetCustomAttributes<AssemblyMetadataAttribute>();
|
||||
|
||||
return gitHashInternal = attrs.First(a => a.Key == "GitHash").Value;
|
||||
return gitHashInternal = attrs.FirstOrDefault(a => a.Key == "GitHash")?.Value ?? "N/A";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue