ソースを参照

Correct email name on onion only images

Bob Mottram 7 年 前
コミット
0f882192b4
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      src/freedombone-base-email

+ 1
- 1
src/freedombone-base-email ファイルの表示

@@ -366,7 +366,7 @@ function check_email_address_exists {
366 366
 
367 367
     if [[ $ONION_ONLY != 'no' ]]; then
368 368
         my_email=$onion_address
369
-        MY_EMAIL_ADDRESS=$onion_address
369
+        MY_EMAIL_ADDRESS="${MY_USERNAME}@$onion_address"
370 370
         write_config_param "MY_EMAIL_ADDRESS" "$MY_EMAIL_ADDRESS"
371 371
     fi
372 372
 }