File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ internal class Constants
4040 "savepage-we"
4141 } ;
4242
43- public static readonly Regex IokIndicatorRegex = new ( @"href=\""\/IOK\/indicators\/(.+)\"">" , RegexOptions . Multiline | RegexOptions . Compiled ) ;
43+ private static readonly Regex Regex = new ( @"href=\""\/IOK\/indicators\/(.+)\"">" , RegexOptions . Multiline | RegexOptions . Compiled ) ;
44+ public static readonly Regex IokIndicatorRegex = Regex ;
4445 }
4546}
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ private async Task PollIoK()
195195 IokMatch [ ] matches = await GetIokMatches ( ) ;
196196
197197 if ( LastIokMatches is null ) found = matches ;
198- else found = matches . Where ( match => LastIokMatches . All ( last => match . UrlscanUUID != last . UrlscanUUID ) ) . ToArray ( ) ;
198+ else found = matches . Where ( match => LastIokMatches . All ( last => match . UrlscanUuid != last . UrlscanUuid ) ) . ToArray ( ) ;
199199
200200 LastIokMatches = matches ;
201201
You can’t perform that action at this time.
0 commit comments