mirror of
https://github.com/discourse/discourse.git
synced 2025-02-01 00:24:18 +08:00
FIX: removing a timer with duration
doesn't work.
This commit is contained in:
parent
d261a809e2
commit
37bf38f801
|
@ -76,15 +76,15 @@ export default Controller.extend(ModalFunctionality, {
|
|||
return "true" === isPublic ? publicTopicTimer : privateTopicTimer;
|
||||
},
|
||||
|
||||
_setTimer(time, duration, statusType) {
|
||||
_setTimer(time, duration, statusType, basedOnLastPost, categoryId) {
|
||||
this.set("loading", true);
|
||||
|
||||
TopicTimer.updateStatus(
|
||||
this.get("model.id"),
|
||||
time,
|
||||
this.get("topicTimer.based_on_last_post"),
|
||||
basedOnLastPost,
|
||||
statusType,
|
||||
this.get("topicTimer.category_id"),
|
||||
categoryId,
|
||||
duration
|
||||
)
|
||||
.then(result => {
|
||||
|
@ -155,7 +155,9 @@ export default Controller.extend(ModalFunctionality, {
|
|||
this._setTimer(
|
||||
this.get("topicTimer.updateTime"),
|
||||
this.get("topicTimer.duration"),
|
||||
this.get("topicTimer.status_type")
|
||||
this.get("topicTimer.status_type"),
|
||||
this.get("topicTimer.based_on_last_post"),
|
||||
this.get("topicTimer.category_id")
|
||||
);
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user