From 8b4779ddf95efc6a01eb913a5a9f9ecfe1c52745 Mon Sep 17 00:00:00 2001 From: Yves Racine Date: Fri, 28 Aug 2015 21:01:17 -0400 Subject: [PATCH] v2.0.2 use of getApiServerUrl() instead of hard coded value --- smartapps/My ecobee Init.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/smartapps/My ecobee Init.groovy b/smartapps/My ecobee Init.groovy index 53b07043..7ddc4d7c 100644 --- a/smartapps/My ecobee Init.groovy +++ b/smartapps/My ecobee Init.groovy @@ -43,7 +43,7 @@ def about() { dynamicPage(name: "about", install: false, uninstall: true) { section("About") { paragraph "My Ecobee Init, the smartapp that connects your Ecobee thermostat to SmartThings via cloud-to-cloud integration" - paragraph "Version 2.0.1\n\n" + + paragraph "Version 2.0.2\n\n" + "If you like this app, please support the developer via PayPal:\n\nyracine@yahoo.com\n\n" + "Copyright©2014 Yves Racine" href url:"http://github.com/yracine/device-type.myecobee", style:"embedded", required:false, title:"More information...", @@ -623,7 +623,7 @@ def toQueryString(Map m) { def getChildNamespace() { "yracine" } def getChildName() { "My Ecobee Device" } -def getServerUrl() { return "https://graph.api.smartthings.com" } +def getServerUrl() { return getApiServerUrl() } def getSmartThingsClientId() { "qqwy6qo0c2lhTZGytelkQ5o8vlHgRsrO" }