chore: pre-commit ci hook, dart format

This commit is contained in:
edde746
2026-04-18 12:40:35 +02:00
parent 2bd9e6655f
commit 3da51f9d64
128 changed files with 2056 additions and 2048 deletions
+1 -4
View File
@@ -13,10 +13,7 @@ class LogRedactionManager {
static final RegExp _ipv4HostPattern = RegExp(r'^\d{1,3}([.-]\d{1,3}){3}$');
/// Pattern-based catch-all for Plex tokens in query strings/headers.
static final RegExp _plexTokenQueryParam = RegExp(
r'X-Plex-Token=[^&#\s]+',
caseSensitive: false,
);
static final RegExp _plexTokenQueryParam = RegExp(r'X-Plex-Token=[^&#\s]+', caseSensitive: false);
// Combined regex for single-pass redaction (rebuilt on set changes)
static RegExp? _combinedPattern;