Skip to content

Commit

Permalink
Merge pull request bigbluebutton#7773 from antobinary/makecall-retry
Browse files Browse the repository at this point in the history
Skip saving viewParticipantsWebcams in collection
  • Loading branch information
antobinary authored Jul 12, 2019
2 parents 7a1be09 + 8a09ce8 commit 169a804
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions bigbluebutton-html5/imports/ui/services/settings/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,12 @@ class Settings {

save() {
Object.keys(this).forEach((k) => {
if (k === '_dataSaving') {
const { value: { viewParticipantsWebcams } } = this[k];

makeCall('userChangedSettings', 'viewParticipantsWebcams', viewParticipantsWebcams);
}
// if (k === '_dataSaving') {
// const { value: { viewParticipantsWebcams } } = this[k];
//
// makeCall('userChangedSettings', 'viewParticipantsWebcams', viewParticipantsWebcams);
// }
// TODO https://github.com/bigbluebutton/bigbluebutton/issue/7774

Storage.setItem(`settings${k}`, this[k].value);
});
Expand Down

0 comments on commit 169a804

Please sign in to comment.