Skip to content

Commit

Permalink
fixed warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wesfieldj committed Jan 3, 2021
1 parent 962abd7 commit 395dc8a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Assets/AppsFlyer/AppsFlyerEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class DeepLinkEventsArgs : EventArgs
/// <summary>
/// DeepLink dictionary to get additional parameters
/// </summary>
public readonly Dictionary<string, object> deepLink;
public Dictionary<string, object> deepLink;

/// <summary>
/// DeepLink status: FOUND, NOT_FOUND, ERROR
Expand Down Expand Up @@ -120,12 +120,17 @@ public bool isDeferred()
}
catch (Exception e)
{

AppsFlyer.AFLog("DeepLinkEventsArgs.isDeferred", String.Format("{0} Exception caught.", e));
}
}

return false;
}

public Dictionary<string, object> getDeepLinkDictionary()
{
return deepLink;
}

public DeepLinkEventsArgs(string str)
{
Expand Down
Binary file modified appsflyer-unity-plugin-6.1.3.unitypackage
Binary file not shown.
Binary file not shown.

0 comments on commit 395dc8a

Please sign in to comment.