jellyfin-web/dashboard-ui/voice/commands/controlcommands.js
2016-02-17 07:58:07 +01:00

11 lines
242 B
JavaScript

define([], function () {
return function (result) {
result.success = true;
if (result.properties.devicename)
MediaController.trySetActiveDeviceName(result.properties.devicename);
return;
}
});