Skip to content

Commit f22318a

Browse files
Fixed an issue when updating the Sdk4meClient.AccountID property
1 parent e54ae76 commit f22318a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Scr/Sdk4me.GraphQL/Sdk4meClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public int DefaultItemsPerRequest
8282
public string AccountID
8383
{
8484
get => accountID;
85-
set => accountID = value;
85+
set => accountID = string.IsNullOrWhiteSpace(value) ? accountID : value;
8686
}
8787

8888
/// <summary>

0 commit comments

Comments
 (0)