mirror of
https://github.com/alexta69/metube.git
synced 2026-06-16 08:16:12 +00:00
allow filtering out members-only videos in subscriptions (closes #971)
This commit is contained in:
@@ -93,6 +93,7 @@ export class App implements AfterViewInit, OnInit, OnDestroy {
|
||||
subscribeInProgress = false;
|
||||
checkIntervalMinutes = 60;
|
||||
titleRegex = '';
|
||||
skipSubscriberOnly = false;
|
||||
editingTitleRegexId: string | null = null;
|
||||
titleRegexEditDraft = '';
|
||||
cachedSubs: [string, SubscriptionRow][] = [];
|
||||
@@ -593,6 +594,7 @@ export class App implements AfterViewInit, OnInit, OnDestroy {
|
||||
...subscribeBase,
|
||||
checkIntervalMinutes: this.checkIntervalMinutes,
|
||||
titleRegex: tr,
|
||||
skipSubscriberOnly: this.skipSubscriberOnly,
|
||||
})
|
||||
.pipe(
|
||||
takeUntilDestroyed(this.destroyRef),
|
||||
@@ -609,6 +611,7 @@ export class App implements AfterViewInit, OnInit, OnDestroy {
|
||||
} else {
|
||||
this.addUrl = '';
|
||||
this.titleRegex = '';
|
||||
this.skipSubscriberOnly = false;
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user