@@ -44,12 +44,6 @@ export default defineComponent({
44
44
}
45
45
} ,
46
46
computed : {
47
- backendPreference : function ( ) {
48
- return this . $store . getters . getBackendPreference
49
- } ,
50
- backendFallback : function ( ) {
51
- return this . $store . getters . getBackendFallback
52
- } ,
53
47
profileList : function ( ) {
54
48
return this . $store . getters . getProfileList
55
49
} ,
@@ -208,7 +202,7 @@ export default defineComponent({
208
202
showToast ( this . $t ( 'Settings.Data Settings.All subscriptions and profiles have been successfully imported' ) )
209
203
} ,
210
204
211
- importCsvYouTubeSubscriptions : async function ( textDecode ) { // first row = header, last row = empty
205
+ importCsvYouTubeSubscriptions : function ( textDecode ) { // first row = header, last row = empty
212
206
const youtubeSubscriptions = textDecode . split ( '\n' ) . filter ( sub => {
213
207
return sub !== ''
214
208
} )
@@ -250,7 +244,7 @@ export default defineComponent({
250
244
this . updateShowProgressBar ( false )
251
245
} ,
252
246
253
- importYouTubeSubscriptions : async function ( textDecode ) {
247
+ importYouTubeSubscriptions : function ( textDecode ) {
254
248
const subscriptions = [ ]
255
249
let count = 0
256
250
@@ -288,7 +282,7 @@ export default defineComponent({
288
282
this . updateShowProgressBar ( false )
289
283
} ,
290
284
291
- importOpmlYouTubeSubscriptions : async function ( data ) {
285
+ importOpmlYouTubeSubscriptions : function ( data ) {
292
286
let xmlDom
293
287
const domParser = new DOMParser ( )
294
288
try {
@@ -362,7 +356,7 @@ export default defineComponent({
362
356
this . updateShowProgressBar ( false )
363
357
} ,
364
358
365
- importNewPipeSubscriptions : async function ( newPipeData ) {
359
+ importNewPipeSubscriptions : function ( newPipeData ) {
366
360
if ( typeof newPipeData . subscriptions === 'undefined' ) {
367
361
showToast ( this . $t ( 'Settings.Data Settings.Invalid subscriptions file' ) )
368
362
0 commit comments