Skip to content

Commit 6cf1ecd

Browse files
committed
Fix engine ID param
1 parent c7ae423 commit 6cf1ecd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mip-sdk-dotnet-quickstart/Action.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ private IFileEngine CreateFileEngine(Identity identity)
140140

141141
// Create file settings object. Passing in empty string for the first parameter, engine ID, will cause the SDK to generate a GUID.
142142
// Locale settings are supported and should be provided based on the machine locale, particular for client applications.
143-
var engineSettings = new FileEngineSettings("", authDelegate, "", "en-US")
143+
var engineSettings = new FileEngineSettings(identity.Email, authDelegate, "", "en-US")
144144
{
145145
// Provide the identity for service discovery.
146146
Identity = identity

0 commit comments

Comments
 (0)