Add 4.1 support (mattermost)

This commit is contained in:
Wim 2017-08-16 22:02:13 +02:00
parent 49ece51167
commit 3f75ed9c18
1 changed files with 2 additions and 1 deletions

View File

@ -869,7 +869,8 @@ func supportedVersion(version string) bool {
strings.HasPrefix(version, "3.8.0") ||
strings.HasPrefix(version, "3.9.0") ||
strings.HasPrefix(version, "3.10.0") ||
strings.HasPrefix(version, "4.0") {
strings.HasPrefix(version, "4.0") ||
strings.HasPrefix(version, "4.1") {
return true
}
return false