From 1c8b2b82d766f02cce4c9b57edb098a17e3cebcd Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Tue, 22 Apr 2025 10:13:59 +0100 Subject: [PATCH] Wrong error message being displayed in UI --- src/Speckle.Sdk/Serialisation/V2/Receive/ObjectLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Speckle.Sdk/Serialisation/V2/Receive/ObjectLoader.cs b/src/Speckle.Sdk/Serialisation/V2/Receive/ObjectLoader.cs index 7f0280f3..2a692f5f 100644 --- a/src/Speckle.Sdk/Serialisation/V2/Receive/ObjectLoader.cs +++ b/src/Speckle.Sdk/Serialisation/V2/Receive/ObjectLoader.cs @@ -146,7 +146,7 @@ public sealed class ObjectLoader( cancellationToken.ThrowIfCancellationRequested(); if (Exception is not null) { - throw new SpeckleException("Error while sending", Exception); + throw new SpeckleException("Error while loading", Exception); } } }