Skip to content

Commit

Permalink
change vars to vals
Browse files Browse the repository at this point in the history
  • Loading branch information
n8fr8 committed Feb 14, 2025
1 parent d7d3046 commit 462d6c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/org/witness/proofmode/SettingsActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -215,11 +215,11 @@ class SettingsActivity : AppCompatActivity() {

fun initContentCredentials (accountName : String?) {

var mPgpUtils = PgpUtils.getInstance();
val mPgpUtils = PgpUtils.getInstance();

val email = accountName;
var display : String? = null
var key : String? = "0x" + mPgpUtils?.publicKeyFingerprint
val key : String? = "0x" + mPgpUtils?.publicKeyFingerprint
var uri : String? = "https://keys.openpgp.org/search?q=" + mPgpUtils?.publicKeyFingerprint

if (email?.isNotEmpty() == true)
Expand Down

0 comments on commit 462d6c4

Please sign in to comment.