Skip to content

Commit

Permalink
Merge pull request #1334 from novasamatech/rc/7.7.1
Browse files Browse the repository at this point in the history
Rc/7.7.1
  • Loading branch information
valentunn committed Jan 18, 2024
2 parents f8bf93d + 9f1b33d commit 209f545
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
buildscript {
ext {
// App version
versionName = '7.7.0'
versionCode = 108
versionName = '7.7.1'
versionCode = 109

applicationId = "io.novafoundation.nova"
releaseApplicationSuffix = "market"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ import java.math.BigInteger
*/
@Language("RoomSql")
private const val FIND_BY_ADDRESS_WHERE_CLAUSE = """
LEFT JOIN chain_accounts as c ON m.id = c.metaId
LEFT JOIN chain_accounts as c ON m.id = c.metaId AND c.chainId = :chainId
WHERE
(c.chainId = :chainId AND c.accountId IS NOT NULL AND c.accountId = :accountId)
(c.accountId IS NOT NULL AND c.accountId = :accountId)
OR (c.accountId IS NULL AND (substrateAccountId = :accountId OR ethereumAddress = :accountId))
ORDER BY (CASE WHEN isSelected THEN 0 ELSE 1 END)
"""
Expand Down

0 comments on commit 209f545

Please sign in to comment.