mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
|
|
|||
|
define([], function () {
|
|||
|
|
|||
|
return function (result) {
|
|||
|
result.success = true;
|
|||
|
if (result.properties.devicename)
|
|||
|
MediaController.trySetActiveDeviceName(result.properties.devicename);
|
|||
|
|
|||
|
return;
|
|||
|
}
|
|||
|
});
|