Skip to content

Commit

Permalink
Quick bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
QuinnDamerell committed Jan 14, 2025
1 parent ade4977 commit 5391b73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion homeway/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ image: ghcr.io/homewayio/homeway/{arch}
# Note when this version number changes, we must make a release to start a docker container build immediately, since HA will start looking for the new version.
# Basically: Make the final commit -> test and check lint actions (if a docker change, push to docker-test to ensure it builds) -> bump the version number -> create GitHub release.
# UPDATE THE CHANGE LOG!
version: 2.1.2
version: 2.1.3
2 changes: 1 addition & 1 deletion homeway/homeway_linuxhost/sage/sagehandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def getAttribution(d:dict) -> Attribution:

def addSagePrefixIfNeeded(s:str) -> str:
if self.SagePrefix_CanBeNone is None:
return input
return s
return f"{self.SagePrefix_CanBeNone} - {s}"

# Parse the response.
Expand Down

0 comments on commit 5391b73

Please sign in to comment.