Skip to content

Commit

Permalink
Fix IFTTT message (#93)
Browse files Browse the repository at this point in the history
Fixes #84

Signed-off-by: Dave Thaler <[email protected]>
  • Loading branch information
dthaler authored Aug 12, 2024
1 parent d22076a commit 5b69ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OrcanodeMonitor/Models/OrcanodeEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public OrcanodeIftttEventDTO(int id, string nodeName, string slug, string type,
Type = type;
Value = value;
Meta = new OrcanodeEventIftttMeta(id, timestamp);
Description = string.Format("{0} orcanode stream was detected as {1}", nodeName, Value);
Description = string.Format("{0} {1} was detected as {2}", nodeName, type, value);
}
[JsonPropertyName("slug")]
public string Slug { get; private set; }
Expand Down

0 comments on commit 5b69ac4

Please sign in to comment.