From 45fd86c2bf958399366cd2ee9729bac3092209a4 Mon Sep 17 00:00:00 2001 From: sharmajs-amzn <82233357+sharmajs-amzn@users.noreply.github.com> Date: Thu, 29 Apr 2021 08:27:34 -0700 Subject: [PATCH] {LYN-2848} Asset Processor: Modifying the Allowed or Rejected list merges previously existing Connections into one record (#363) {LYN-2848} Asset Processor: Modifying the Allowed or Rejected list merges previously existing Connections into one record https://jira.agscollab.com/browse/LYN-2848 launched ap gui and tested manually. --- Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp b/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp index 86e00bfd41..b152e5ed4f 100644 --- a/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp @@ -713,7 +713,7 @@ namespace AssetUtilities } // Update Settings Registry with new token - AZStd::string azNewAllowedList{ newAllowedList.join(', ').toUtf8().constData() }; + AZStd::string azNewAllowedList{ newAllowedList.join(',').toUtf8().constData() }; settingsRegistry->Set(allowedListKey, azNewAllowedList); return AssetUtilsInternal::DumpAssetProcessorUserSettingsToFile(*settingsRegistry, assetProcessorUserSetregPath);