Merge branch 'maintenance' into devel

# Conflicts:
#	CHANGELOG.md
This commit is contained in:
Gina Häußge 2016-10-17 14:24:17 +02:00
commit c66be226b1
2 changed files with 10 additions and 0 deletions

View file

@ -74,6 +74,14 @@
* [#1047](https://github.com/foosel/OctoPrint/issues/1047) - Fixed 90 degree
webcam rotation for iOS Safari.
## 1.2.17rc4 (2016-10-17)
### Bug fixes
* Properly handle empty JS file list from plugins. Solves a 500 on OctoPrint instances without any third party plugins installed generated during web asset bundling introduced in 1.2.17rc2.
([Commits](https://github.com/foosel/OctoPrint/compare/1.2.17rc3...1.2.17rc4))
## 1.2.17rc3 (2016-10-13)
### Bug fixes

View file

@ -1044,6 +1044,8 @@ class Server(object):
"js/app/helpers.js",
"js/app/main.js"]
js_plugins = dynamic_plugin_assets["external"]["js"]
if len(js_plugins) == 0:
js_plugins = ["empty"]
js_app = js_plugins + js_core
css_libs = [