mirror of
https://github.com/chibicitiberiu/ytsm.git
synced 2024-02-24 05:43:31 +00:00
Sync channels in reverse order from when they were last synced
This commit is contained in:
@ -335,7 +335,7 @@ class UpdateSubscriptionForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = Subscription
|
||||
fields = ['name', 'parent_folder', 'auto_download',
|
||||
'download_limit', 'download_order', "automatically_delete_watched"]
|
||||
'download_limit', 'download_order', "automatically_delete_watched", 'last_synchronised']
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
@ -349,7 +349,8 @@ class UpdateSubscriptionForm(forms.ModelForm):
|
||||
'auto_download',
|
||||
'download_limit',
|
||||
'download_order',
|
||||
'automatically_delete_watched'
|
||||
'automatically_delete_watched',
|
||||
Field('last_synchronised', readonly=True)
|
||||
)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user