Skip to content

Commit

Permalink
style: trunk fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveitaly committed Jan 12, 2024
1 parent 02db9dd commit fe40661
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/hyper-focus/action_handler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ enum ActionHandler {
// TODO: too big, should be a separate method!
var queryIsSubset = true
if let supersetQueryItems = supersetUrl.queryItems, let subsetQueryItems = subsetUrl.queryItems {
subsetQueryItems.forEach { subsetQueryItem in
for subsetQueryItem in subsetQueryItems {
if !supersetQueryItems.contains(subsetQueryItem) {
queryIsSubset = false
}
Expand Down

0 comments on commit fe40661

Please sign in to comment.