Skip to content

Commit

Permalink
CR fix - case insensitive file extension comparison.
Browse files Browse the repository at this point in the history
  • Loading branch information
vagisha committed Feb 26, 2025
1 parent 914a62e commit 6e3c6b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@ public boolean isMaxQuantSearch()

public boolean isDiannSearch()
{
return (hasIdFile() && getIdFile().endsWith(".speclib"));
return (hasIdFile() && getIdFile().toLowerCase().endsWith(".speclib"));
}
}

0 comments on commit 6e3c6b2

Please sign in to comment.