From 46b8e24968511ef965ee00e5f5591c7932a43dfd Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Wed, 27 Mar 2024 15:33:19 -0500 Subject: [PATCH] fix: use correct quotes --- src/Pepperdash Core/Device.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pepperdash Core/Device.cs b/src/Pepperdash Core/Device.cs index 25d48af..749713e 100644 --- a/src/Pepperdash Core/Device.cs +++ b/src/Pepperdash Core/Device.cs @@ -50,7 +50,7 @@ namespace PepperDash.Core public Device(string key) { Key = key; - if (key.Contains('.')) Debug.LogMessage(LogEventLevel.Information, "WARNING: Device key should not include '.'", this); + if (key.Contains(".")) Debug.LogMessage(LogEventLevel.Information, "WARNING: Device key should not include '.'", this); Name = ""; }