Fix error on keyword not found

This commit is contained in:
Shin'ya Ueoka 2018-07-28 22:51:58 +09:00
parent ed2bd7d75e
commit f914d76ce8
4 changed files with 11 additions and 7 deletions

View file

@ -12,7 +12,8 @@ export default class FindRepository {
}
setKeyword(keyword) {
return this.cache.set(FIND_KEYWORD_KEY, keyword);
this.cache.set(FIND_KEYWORD_KEY, keyword);
return Promise.resolve();
}
}