Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChannelListener.cpp')
-rw-r--r--src/ChannelListener.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ChannelListener.cpp b/src/ChannelListener.cpp
index 1f0656d19..c6cc0d2a4 100644
--- a/src/ChannelListener.cpp
+++ b/src/ChannelListener.cpp
@@ -262,10 +262,11 @@ void ChannelListener::saveToDB() {
}
// Save the currently listened channels
- Global::get().db->setChannelListeners(Global::get().sh->qbaDigest, ChannelListener::getListenedChannelsForUser(Global::get().uiSession));
+ Global::get().db->setChannelListeners(Global::get().sh->qbaDigest,
+ ChannelListener::getListenedChannelsForUser(Global::get().uiSession));
// And also the currently set volume adjustments (if they're not set to 1.0)
- Global::get().db->setChannelListenerLocalVolumeAdjustments(Global::get().sh->qbaDigest,
- ChannelListener::getAllListenerLocalVolumeAdjustments(true));
+ Global::get().db->setChannelListenerLocalVolumeAdjustments(
+ Global::get().sh->qbaDigest, ChannelListener::getAllListenerLocalVolumeAdjustments(true));
}
#endif