Some bug fixes related to new Home Assistant JS

This commit is contained in:
Paulus Schoutsen 2015-03-11 00:21:18 -07:00
parent 020213e682
commit 6242b856b4
4 changed files with 10 additions and 10 deletions

View File

@ -1,2 +1,2 @@
""" DO NOT MODIFY. Auto-generated by build_frontend script """
VERSION = "96734c763abefc639b83ea3ee2190adb"
VERSION = "b0c85f68d338fcd776ae95ef23ac61fd"

File diff suppressed because one or more lines are too long

@ -1 +1 @@
Subproject commit f2dfda38a2a5e4acf428f10c443f985d8fb23248
Subproject commit 5b0a96c67fb3182c811f800df107c1c833a395f0

View File

@ -44,8 +44,8 @@
// if auth was given, tell the backend
if(this.auth) {
uiActions.validateAuth(this.auth, false);
} else if (preferenceStore.hasAuthToken()) {
uiActions.validateAuth(preferenceStore.getAuthToken(), false);
} else if (preferenceStore.hasAuthToken) {
uiActions.validateAuth(preferenceStore.authToken, false);
}
},