mirror of
				https://github.com/janeczku/calibre-web
				synced 2025-10-30 23:03:02 +00:00 
			
		
		
		
	Bugfixes from testrun
This commit is contained in:
		| @@ -1684,12 +1684,12 @@ def edit_scheduledtasks(): | ||||
| def update_scheduledtasks(): | ||||
|     error = False | ||||
|     to_save = request.form.to_dict() | ||||
|     if "0" <= to_save.get("schedule_start_time") <= "23": | ||||
|     if 0 <= int(to_save.get("schedule_start_time")) <= 23: | ||||
|         _config_int(to_save, "schedule_start_time") | ||||
|     else: | ||||
|         flash(_(u"Invalid start time for task specified"), category="error") | ||||
|         error = True | ||||
|     if "0" < to_save.get("schedule_duration") <= "60": | ||||
|     if 0 < int(to_save.get("schedule_duration")) <= 60: | ||||
|         _config_int(to_save, "schedule_duration") | ||||
|     else: | ||||
|         flash(_(u"Invalid duration for task specified"), category="error") | ||||
|   | ||||
| @@ -34,8 +34,8 @@ def get_scheduled_tasks(reconnect=True): | ||||
|  | ||||
|     # Generate all missing book cover thumbnails | ||||
|     if config.schedule_generate_book_covers: | ||||
|         tasks.append([lambda: TaskGenerateCoverThumbnails(), 'generate book covers', False]) | ||||
|         tasks.append([lambda: TaskClearCoverThumbnailCache(0), 'delete superfluous book covers', True]) | ||||
|         tasks.append([lambda: TaskGenerateCoverThumbnails(), 'generate book covers', False]) | ||||
|  | ||||
|     # Generate all missing series thumbnails | ||||
|     if config.schedule_generate_series_covers: | ||||
|   | ||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
		Reference in New Issue
	
	Block a user
	 Ozzie Isaacs
					Ozzie Isaacs