Skip to content

Commit

Permalink
Fix issue: jaas meeting not getting created with appbar button when j…
Browse files Browse the repository at this point in the history
…itsiJWT is true in setting
  • Loading branch information
raghavaggarwal2308 committed Jul 13, 2024
1 parent a7d92c6 commit 97af4ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (c *configuration) IsValid() error {
}
}

if c.JitsiJWT {
if c.JitsiJWT && c.ServerType != JaaSServerType {
if len(c.JitsiAppID) == 0 {
return fmt.Errorf("error no Jitsi app ID was provided to use with JWT")
}
Expand Down

0 comments on commit 97af4ac

Please sign in to comment.