Skip to content

Commit 26f415f

Browse files
committed
Core - SetCrashKeyValue fix key not being passed to CEF
1 parent 1d88a66 commit 26f415f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

CefSharp.Core/Cef.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,9 +572,11 @@ public static bool CrashReportingEnabled
572572
/// <summary>
573573
/// Sets or clears a specific key-value pair from the crash metadata.
574574
/// </summary>
575-
public static void SetCrashKeyValue(string c, string value)
575+
/// <param name="key">key</param>
576+
/// <param name="value">value</param>
577+
public static void SetCrashKeyValue(string key, string value)
576578
{
577-
Core.Cef.SetCrashKeyValue(value, value);
579+
Core.Cef.SetCrashKeyValue(key, value);
578580
}
579581

580582
/// <summary>

0 commit comments

Comments
 (0)