When we receive settings from the client save them on disk

This commit is contained in:
Julien Duponchelle 2017-03-07 11:12:51 +01:00
parent 78e5944e66
commit d89ea83746
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -236,6 +236,7 @@ class Controller:
@settings.setter
def settings(self, val):
self._settings = val
self.save()
self.notification.emit("settings.updated", val)
@asyncio.coroutine