Skip to content

Commit

Permalink
fix(schedule): fix compile error in searchFreeTimes
Browse files Browse the repository at this point in the history
  • Loading branch information
miyajan committed May 31, 2018
1 parent 2216f3d commit 7bb5660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/schedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default class Schedule {
const searchCondition = needAllFacilities ? 'and' : 'or';
parameters.push({
'_attr': {
search_time: time.toString(new Date(searchTime)),
search_time: time.toString(new Date(searchTime.getTime())),
search_condition: searchCondition
}
});
Expand Down

0 comments on commit 7bb5660

Please sign in to comment.