mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-23 16:23:41 +00:00
no log: make it cleaner
This commit is contained in:
parent
80414c08ab
commit
205bceb38d
1 changed files with 2 additions and 3 deletions
|
@ -24,15 +24,14 @@ ui_bp = Blueprint('ui', __name__,
|
|||
'build', 'assets'),
|
||||
static_url_path='/assets')
|
||||
|
||||
if os.path.exists(os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))),'frontend', 'build',
|
||||
if os.path.exists(os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), 'frontend', 'build',
|
||||
'images')):
|
||||
static_directory = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), 'frontend', 'build',
|
||||
'images')
|
||||
else:
|
||||
static_directory = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), 'frontend', 'public',
|
||||
'images')
|
||||
static_bp = Blueprint('images', __name__,
|
||||
static_folder=static_directory, static_url_path='/images')
|
||||
static_bp = Blueprint('images', __name__, static_folder=static_directory, static_url_path='/images')
|
||||
|
||||
ui_bp.register_blueprint(static_bp)
|
||||
|
||||
|
|
Loading…
Reference in a new issue