mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2024-12-22 09:00:14 +00:00
fix mime type for admin.js
This commit is contained in:
parent
fa0527c6a7
commit
a2a2abc7f2
2
.gitignore
vendored
2
.gitignore
vendored
@ -18,3 +18,5 @@ old/
|
|||||||
requirements.txt
|
requirements.txt
|
||||||
package-lock.json
|
package-lock.json
|
||||||
video/
|
video/
|
||||||
|
scss/bs5/*.css*
|
||||||
|
scss/bs4/*.css*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
__version__ = "0.3.0"
|
__version__ = "0.3.1"
|
||||||
|
|
||||||
import secrets
|
import secrets
|
||||||
import configparser
|
import configparser
|
||||||
|
@ -39,7 +39,11 @@ def static_proxy(path):
|
|||||||
bsVersion = 5
|
bsVersion = 5
|
||||||
else:
|
else:
|
||||||
bsVersion = 4
|
bsVersion = 4
|
||||||
return render_template("admin.js", bsVersion=bsVersion)
|
return (
|
||||||
|
render_template("admin.js", bsVersion=bsVersion),
|
||||||
|
200,
|
||||||
|
{"Content-Type": "text/javascript"},
|
||||||
|
)
|
||||||
return app.send_static_file(path)
|
return app.send_static_file(path)
|
||||||
return (
|
return (
|
||||||
render_template(
|
render_template(
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "jellyfin-accounts"
|
name = "jellyfin-accounts"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "A simple account management system for Jellyfin"
|
description = "A simple account management system for Jellyfin"
|
||||||
authors = ["Harvey Tindall <harveyltindall@gmail.com>"]
|
authors = ["Harvey Tindall <harveyltindall@gmail.com>"]
|
||||||
|
Loading…
Reference in New Issue
Block a user