Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
niklabh committed May 7, 2020
1 parent 1f618f4 commit 26c9cab
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 17 deletions.
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Mattermost plugin for webRTC peer to peer video call.",
"homepage_url": "https://github.com/niklabh/mattermost-plugin-webrtc-video",
"support_url": "https://github.com/niklabh/mattermost-plugin-webrtc-video/issues",
"version": "1.0.1",
"version": "1.0.2",
"min_server_version": "5.12.0",
"server": {
"executables": {
Expand Down
13 changes: 0 additions & 13 deletions server/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package main

import (
"reflect"
"strings"

"github.com/pkg/errors"
)
Expand Down Expand Up @@ -46,18 +45,6 @@ func (c *configuration) Clone() *configuration {

// IsValid checks if all needed fields are set.
func (c *configuration) IsValid() error {
if len(c.SignalhubURL) == 0 {
return errors.New("SignalhubUrl is not configured")
}

if len(c.STUNServer) == 0 {
return errors.New("STUNServer is not configured")
}

if len(c.TURNServer) == 0 || !strings.HasPrefix(c.TURNServer, "turn:") {
return errors.New("TURNServer is not configured")
}

return nil
}

Expand Down
2 changes: 1 addition & 1 deletion server/manifest.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ class AudioCallPanel extends React.Component {
turnServerCredential,
config,
};

}

async handleRequestPerms() {
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/manifest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 26c9cab

Please sign in to comment.