This repository was archived by the owner on Apr 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -147,14 +147,14 @@ static void ListInstalledPackagesRequestProgress()
147147 {
148148 if ( package . name . Equals ( "com.lootlocker.lootlockersdk" ) )
149149 {
150- LootLockerConfig . current . sdk_version = package . version ;
150+ LootLockerConfig . current . sdk_version = package . version + "-assetstore" ;
151151 return ;
152152 }
153153 }
154154
155155 if ( File . Exists ( "Assets/LootLockerSDK/package.json" ) )
156156 {
157- LootLockerConfig . current . sdk_version = LootLockerJson . DeserializeObject < LLPackageDescription > ( File . ReadAllText ( "Assets/LootLockerSDK/package.json" ) ) . version ;
157+ LootLockerConfig . current . sdk_version = LootLockerJson . DeserializeObject < LLPackageDescription > ( File . ReadAllText ( "Assets/LootLockerSDK/package.json" ) ) . version + "-assetstore" ;
158158 return ;
159159 }
160160
@@ -166,7 +166,7 @@ static void ListInstalledPackagesRequestProgress()
166166 var packageDescription = LootLockerJson . DeserializeObject < LLPackageDescription > ( File . ReadAllText ( assetPath ) ) ;
167167 if ( ! string . IsNullOrEmpty ( packageDescription . name ) && packageDescription . name . Equals ( "com.lootlocker.lootlockersdk" ) )
168168 {
169- LootLockerConfig . current . sdk_version = packageDescription . version ;
169+ LootLockerConfig . current . sdk_version = packageDescription . version + "-assetstore" ;
170170 return ;
171171 }
172172 }
You can’t perform that action at this time.
0 commit comments