Compare commits
2
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
872cdbc684 | ||
|
|
0f78931599 |
@@ -570,15 +570,6 @@ public partial class PopupWindow : Window
|
|||||||
reqRows.Add(MakeRow("Time", VM.DiagLastFetch.Value.ToString("HH:mm:ss")));
|
reqRows.Add(MakeRow("Time", VM.DiagLastFetch.Value.ToString("HH:mm:ss")));
|
||||||
AddSection("LAST REQUEST", reqRows);
|
AddSection("LAST REQUEST", reqRows);
|
||||||
|
|
||||||
// COOKIE STORE
|
|
||||||
AddSection("COOKIE STORE",
|
|
||||||
[
|
|
||||||
MakeRow("Total cookies", VM.DiagCookieCount.ToString()),
|
|
||||||
MakeRow("Claude cookies", VM.DiagClaudeCookieCount.ToString()),
|
|
||||||
MakeRow("All domains", VM.DiagCookieDomains.Count == 0
|
|
||||||
? "(none)" : string.Join(", ", VM.DiagCookieDomains)),
|
|
||||||
]);
|
|
||||||
|
|
||||||
// STORED COOKIE NAMES
|
// STORED COOKIE NAMES
|
||||||
var storedNames = GetStoredCookieNames();
|
var storedNames = GetStoredCookieNames();
|
||||||
var nameRows = new List<FrameworkElement>();
|
var nameRows = new List<FrameworkElement>();
|
||||||
@@ -637,9 +628,6 @@ public partial class PopupWindow : Window
|
|||||||
if (VM.DiagLastFetch.HasValue)
|
if (VM.DiagLastFetch.HasValue)
|
||||||
sb.AppendLine($"Last fetch: {VM.DiagLastFetch.Value:HH:mm:ss}");
|
sb.AppendLine($"Last fetch: {VM.DiagLastFetch.Value:HH:mm:ss}");
|
||||||
sb.AppendLine();
|
sb.AppendLine();
|
||||||
sb.AppendLine($"Total cookies: {VM.DiagCookieCount}");
|
|
||||||
sb.AppendLine($"Claude cookies: {VM.DiagClaudeCookieCount}");
|
|
||||||
sb.AppendLine($"Domains: {string.Join(", ", VM.DiagCookieDomains)}");
|
|
||||||
sb.AppendLine();
|
sb.AppendLine();
|
||||||
sb.AppendLine("Stored cookies:");
|
sb.AppendLine("Stored cookies:");
|
||||||
foreach (var c in storedNames)
|
foreach (var c in storedNames)
|
||||||
|
|||||||
Reference in New Issue
Block a user