1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-21 12:29:36 +02:00

Added support for Steam URLs. Changed default prefix setting options to be dynamically rendered

This commit is contained in:
unknown 2021-07-16 11:55:26 +02:00
parent f1c48e8a15
commit 4143ae8198
3 changed files with 14 additions and 16 deletions

View file

@ -10,7 +10,6 @@ export const searchParser = (searchQuery: string): boolean => {
const query = queries.find((q: Query) => q.prefix === prefix);
console.log("QUERY IS " + query);
if (query) {
const sameTab = searchConfig('searchSameTab', false);
@ -24,4 +23,4 @@ export const searchParser = (searchQuery: string): boolean => {
}
return false;
}
}