From 558251d221444072164f6d554ef492f079ad1203 Mon Sep 17 00:00:00 2001 From: Can Berk T <53381468+cnbrk13@users.noreply.github.com> Date: Thu, 11 Jan 2024 10:38:06 +0000 Subject: [PATCH] - Fix wrong Newtonsoft reference - Add LinuxEditor case in BeaconConnectorFactory --- Editor/Scripts/IssueReportFormWindow.cs | 2 +- Runtime/Scripts/Beacon/Connectors/BeaconConnectorFactory.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Editor/Scripts/IssueReportFormWindow.cs b/Editor/Scripts/IssueReportFormWindow.cs index f978f322..8835c5ca 100644 --- a/Editor/Scripts/IssueReportFormWindow.cs +++ b/Editor/Scripts/IssueReportFormWindow.cs @@ -1,5 +1,5 @@ using System.IO; -using Unity.Plastic.Newtonsoft.Json.Linq; +using Newtonsoft.Json.Linq; using UnityEditor; using UnityEngine; using UnityEngine.Networking; diff --git a/Runtime/Scripts/Beacon/Connectors/BeaconConnectorFactory.cs b/Runtime/Scripts/Beacon/Connectors/BeaconConnectorFactory.cs index cdecd041..3d519324 100644 --- a/Runtime/Scripts/Beacon/Connectors/BeaconConnectorFactory.cs +++ b/Runtime/Scripts/Beacon/Connectors/BeaconConnectorFactory.cs @@ -18,6 +18,7 @@ public static IBeaconConnector CreateConnector(RuntimePlatform platform, WalletE case RuntimePlatform.WindowsPlayer: case RuntimePlatform.WindowsEditor: case RuntimePlatform.LinuxPlayer: + case RuntimePlatform.LinuxEditor: case RuntimePlatform.OSXPlayer: case RuntimePlatform.OSXEditor: return new BeaconConnectorDotNet(eventManager);