Skip to content

Commit

Permalink
Merge pull request SmartThingsCommunity#2140 from juano2310/lifx_not_…
Browse files Browse the repository at this point in the history
…null

ICP-507 - Replace location count null with 0
  • Loading branch information
bflorian authored Jul 6, 2017
2 parents 2315437 + 1b0437c commit 7389edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smartapps/smartthings/lifx-connect.src/lifx-connect.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def authPage() {
log.debug "have LIFX access token"

def options = locationOptions() ?: []
def count = options.size()
def count = options.size().toString()

return dynamicPage(name:"Credentials", title:"", nextPage:"", install:true, uninstall: true) {
section("Select your location") {
Expand Down

0 comments on commit 7389edf

Please sign in to comment.