diff options
author | stuebinm | 2021-12-24 15:16:12 +0100 |
---|---|---|
committer | stuebinm | 2021-12-24 15:16:12 +0100 |
commit | e3d6b59b76f7057179723d4853220c2db9c18064 (patch) | |
tree | 8fa0b06e4172a324fb05b6bc9e251a77be370e78 | |
parent | 921f49fa34b3f363757f53d05f640023c143a287 (diff) |
allow shared (not just shared-) as prefix for shared jitsis
this might make things less confusing for some people
-rw-r--r-- | lib/Properties.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Properties.hs b/lib/Properties.hs index 7425a08..edffe8d 100644 --- a/lib/Properties.hs +++ b/lib/Properties.hs @@ -345,7 +345,7 @@ checkTileLayerProperty p@(Property name _value) = case name of suggestProperty $ Property "jitsiTrigger" "onaction" -- prepend jitsi room names to avoid name clashes - unless ("shared-" `isPrefixOf` jitsiRoom) $ do + unless ("shared" `isPrefixOf` jitsiRoom) $ do assemblyname <- lintConfig configAssemblyTag setProperty "jitsiRoom" (assemblyname <> "-" <> jitsiRoom) "jitsiTrigger" -> do |