Skip to content

Commit

Permalink
bug and version bump (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpoile authored and levb committed Jun 3, 2019
1 parent 5b3ac95 commit 0dfb343
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.mattermost.aws-sns",
"name": "AWS SNS",
"description": "Send alert notifications from [Amazon AWS CloudWatch](https://aws.amazon.com/cloudwatch/) to Mattermost channels via AWS SNS",
"version": "0.1.1",
"version": "1.0.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
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.mattermost.aws-sns",
Version: "0.1.1",
Version: "1.0.0",
}
2 changes: 1 addition & 1 deletion server/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (p *Plugin) OnActivate() error {
}

newChannel, errChannel := p.API.CreateChannel(channelToCreate)
if err != nil {
if errChannel != nil {
return errChannel
}
p.ChannelID = newChannel.Id
Expand Down

0 comments on commit 0dfb343

Please sign in to comment.