Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/docker-ci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2022-09-26 13:16:49 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2022-09-26 13:16:49 +0300
commit5664c92391487d4915a856477b3a471a255ecf09 (patch)
tree170c72687ff602b1adf5e0acbf449bee65c76de5
parentb144010c93e114830405e4334f2fdbc451df0779 (diff)
fix sender of transifex-sync
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r--translations/transifexSync.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/translations/transifexSync.php b/translations/transifexSync.php
index 2413a2c..f916a3d 100644
--- a/translations/transifexSync.php
+++ b/translations/transifexSync.php
@@ -147,7 +147,7 @@ foreach ($jobs as $job) {
// send email in case of trouble
if ($result->errorMessage !== '') {
- @mail('joas@nextcloud.com,tobias@nextcloud.com', 'Transifex sync job failed', 'This is the log:' . PHP_EOL . $result->errorMessage);
+ @mail('joas@nextcloud.com,tobias@nextcloud.com', 'Transifex sync job failed', 'This is the log:' . PHP_EOL . $result->errorMessage, ['From' => 'no-reply@nextcloud.com']);
}
}
}