1
1
const { globalShortcut } = require ( "electron" ) ;
2
2
const electronLocalshortcut = require ( "electron-localshortcut" ) ;
3
- const { setOptions } = require ( "../../config/plugins" ) ;
4
3
5
4
const getSongControls = require ( "../../providers/song-controls" ) ;
6
5
@@ -20,8 +19,6 @@ function registerShortcuts(win, options) {
20
19
const songControls = getSongControls ( win ) ;
21
20
const { playPause, next, previous, search } = songControls ;
22
21
23
- updateOptions ( options ) ;
24
-
25
22
if ( options . overrideMediaKeys ) {
26
23
_registerGlobalShortcut ( win . webContents , "MediaPlayPause" , playPause ) ;
27
24
_registerGlobalShortcut ( win . webContents , "MediaNextTrack" , next ) ;
@@ -59,26 +56,4 @@ function registerShortcuts(win, options) {
59
56
}
60
57
}
61
58
62
- /** Update options to new format if they are still an array (old format) */
63
- function updateOptions ( options ) {
64
- let updated = false ;
65
- for ( const optionType of [ "global" , "local" ] ) {
66
- if ( Array . isArray ( options [ optionType ] ) ) {
67
- const updatedOptions = { } ;
68
- for ( const optionObject of options [ optionType ] ) {
69
- if ( optionObject . action && optionObject . shortcut ) {
70
- updatedOptions [ optionObject . action ] = optionObject . shortcut ;
71
- }
72
- }
73
-
74
- options [ optionType ] = updatedOptions ;
75
- updated = true ;
76
- }
77
- }
78
-
79
- if ( updated ) {
80
- setOptions ( "shortcuts" , options ) ;
81
- }
82
- }
83
-
84
59
module . exports = registerShortcuts ;
0 commit comments