浏览代码

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
 }