mirror of
https://github.com/alyssaxuu/omni.git
synced 2026-03-11 08:54:35 +00:00
Merge pull request #37 from takumi-n/fix/history-search
fix: history search not working
This commit is contained in:
commit
b947923c35
1 changed files with 1 additions and 1 deletions
|
|
@ -127,7 +127,7 @@ $(document).ready(function(){
|
|||
var tempvalue = value.replace("/history ", "");
|
||||
var query = "";
|
||||
if (tempvalue != "/history") {
|
||||
query = value.replace("/history " + " ", "");
|
||||
query = value.replace("/history ", "");
|
||||
}
|
||||
chrome.runtime.sendMessage({request:"search-history", query:query}, function(response){
|
||||
populateOmniFilter(response.history);
|
||||
|
|
|
|||
Loading…
Reference in a new issue