Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
scottleedavis committed Aug 7, 2019
1 parent 3ba5005 commit 1d92e1c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "com.github.scottleedavis.mattermost-plugin-remind",
"name": "Remind Bot",
"description": "Sets Reminders for users and channels",
"version": "0.4.2",
"version": "0.4.3",
"min_server_version": "5.12.0",
"server": {
"executables": {
Expand Down
6 changes: 3 additions & 3 deletions server/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,10 +324,10 @@ func (p *Plugin) handleDeleteEphemeral(w http.ResponseWriter, r *http.Request) {
"Message": message,
}
post := &model.Post{
Id: request.PostId,
UserId: p.remindUserId,
Id: request.PostId,
UserId: p.remindUserId,
ChannelId: request.ChannelId,
Message: T("action.delete", deleteParameters),
Message: T("action.delete", deleteParameters),
}
p.API.UpdateEphemeralPost(request.UserId, post)
writePostActionIntegrationResponseOk(w, &model.PostActionIntegrationResponse{})
Expand Down
2 changes: 1 addition & 1 deletion server/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ var manifest = struct {
Version string
}{
Id: "com.github.scottleedavis.mattermost-plugin-remind",
Version: "0.4.2",
Version: "0.4.3",
}

0 comments on commit 1d92e1c

Please sign in to comment.