mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-08 05:25:21 +00:00
Fix merge issue
This commit is contained in:
parent
80a212683d
commit
b373eaff39
1 changed files with 6 additions and 1 deletions
|
|
@ -862,7 +862,12 @@ export function getAllScheduleMatchingGroups (date) {
|
|||
}
|
||||
});
|
||||
}
|
||||
if (!cachedScheduleMatchers[type]) {
|
||||
return cachedScheduleMatchers;
|
||||
}
|
||||
|
||||
export function getScheduleMatchingGroup (type, date) {
|
||||
const matchingGroups = getAllScheduleMatchingGroups(date);
|
||||
if (!matchingGroups[type]) {
|
||||
// No matchers exist for this type
|
||||
return {
|
||||
items: [],
|
||||
|
|
|
|||
Loading…
Reference in a new issue