Skip to content

Commit

Permalink
Fix/windows editor secure storage (#174)
Browse files Browse the repository at this point in the history
* fix up conditional compilation checks

* Increment package version

---------

Co-authored-by: Adam <[email protected]>
  • Loading branch information
BellringerQuinn and Adam authored Oct 2, 2024
1 parent ae7520a commit 837b9f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ public class WindowsProtectedDataStorage : ISecureStorage

public WindowsProtectedDataStorage()
{
#if UNITY_STANDALONE_WIN || UNITY_EDITOR_WIN
#else
#if !UNITY_STANDALONE_WIN && !UNITY_EDITOR_WIN
throw new System.NotSupportedException("WindowsProtectedDataStorage is only supported on windows platform.");
#endif
}
Expand Down
2 changes: 1 addition & 1 deletion Packages/Sequence-Unity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xyz.0xsequence.waas-unity",
"version": "3.8.0",
"version": "3.8.1",
"displayName": "Sequence Embedded Wallet SDK",
"description": "A Unity SDK for the Sequence WaaS API",
"unity": "2021.3",
Expand Down

0 comments on commit 837b9f8

Please sign in to comment.