Skip to content

Commit

Permalink
Use correct id in scheduled search list. (#3903)
Browse files Browse the repository at this point in the history
  • Loading branch information
EreMaijala committed Sep 4, 2024
1 parent dde2be7 commit 60aef1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/VuFind/src/VuFind/Search/History.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function getSearchHistory($userId = null)
$unsaved[] = $search;
}
if ($search->getOptions()->supportsScheduledSearch()) {
$schedule[$search->getSearchId()] = $current->getNotificationFrequency();
$schedule[$current->getId()] = $current->getNotificationFrequency();
}
}

Expand Down

0 comments on commit 60aef1a

Please sign in to comment.