fix opds
This commit is contained in:
		
							parent
							
								
									e845bdbd56
								
							
						
					
					
						commit
						0c9eacb024
					
				| 
						 | 
					@ -673,9 +673,9 @@ def get_opds_download_link(book_id, format):
 | 
				
			||||||
    file_name = book.title
 | 
					    file_name = book.title
 | 
				
			||||||
    if len(book.authors) > 0:
 | 
					    if len(book.authors) > 0:
 | 
				
			||||||
        file_name = book.authors[0].name + '-' + file_name
 | 
					        file_name = book.authors[0].name + '-' + file_name
 | 
				
			||||||
    # file_name = helper.get_valid_filename(file_name)
 | 
					    file_name = helper.get_valid_filename(file_name)
 | 
				
			||||||
    response = make_response(send_from_directory(os.path.join(config.config_calibre_dir, book.path), data.name + "." + format))
 | 
					    response = make_response(send_from_directory(os.path.join(config.config_calibre_dir, book.path), data.name + "." + format))
 | 
				
			||||||
    response.headers["Content-Disposition"] = "attachment; filename=\"%s.%s\"" % (data.name, format)
 | 
					    response.headers["Content-Disposition"] = "attachment; filename=\"%s.%s\"" % (urllib.quote(file_name.encode('utf8')), format)
 | 
				
			||||||
    return response
 | 
					    return response
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user