Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI

on:
push:
branches: [ develop, feature/*, bugfix/* ]
branches: [ develop, feature/*, bugfix/*, copilot/* ]
# pull_request:
# branches: [ main, master, develop ]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name: "CodeQL Advanced"

on:
push:
branches: [ "main", "develop", "feature/*" ]
branches: [ "main", "develop", "feature/*", "copilot/*" ]
pull_request:
branches: [ "main", "develop" ]
schedule:
Expand Down
7 changes: 6 additions & 1 deletion Pages/Home.razor
Original file line number Diff line number Diff line change
Expand Up @@ -415,8 +415,13 @@
statusMessage = "Searching IP ranges...";
StateHasChanged(); try
{
// Extract just the IP address part (strip ;maxDays if present)
string actualIpAddress = ipAddress.Contains(';')
? ipAddress.Split(';', 2)[0].Trim()
: ipAddress.Trim();

// Parse the entered IP address
IPAddress enteredIp = IPAddress.Parse(ipAddress);
IPAddress enteredIp = IPAddress.Parse(actualIpAddress);

// Load all manifest files in parallel for optimal performance
var downloadTasks = new[]
Expand Down
Loading