mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-06 08:57:46 +00:00
🐛(frontend) auto-select new custom background when not logged in
When not logged in and selecting a new custom personal background the constant id was causing the new custom background not to be auto selected.
This commit is contained in:
@@ -319,7 +319,9 @@ export const EffectsConfiguration = ({
|
||||
}
|
||||
const imagePath = URL.createObjectURL(file)
|
||||
|
||||
const fileId = `local-image`
|
||||
// We concatenate with the image path so that the constructed file-id
|
||||
// is unique for local files.
|
||||
const fileId = `local-image-${imagePath}`
|
||||
await toggleEffect({
|
||||
type: ProcessorType.VIRTUAL,
|
||||
imagePath,
|
||||
|
||||
Reference in New Issue
Block a user