Fix default avatar path
This commit is contained in:
parent
465db860b6
commit
b7386a2814
|
@ -165,6 +165,12 @@ archive_files_with_partner() {
|
||||||
|
|
||||||
THEIR_AVATAR="$(archive_avatars "$account_id" "$partner_id" "$output_dir/avatar" | head -1)"
|
THEIR_AVATAR="$(archive_avatars "$account_id" "$partner_id" "$output_dir/avatar" | head -1)"
|
||||||
YOUR_AVATAR="$(archive_avatars "$account_id" "$(account_jid_id "$account_id")" "$output_dir/your_avatar" | head -1)"
|
YOUR_AVATAR="$(archive_avatars "$account_id" "$(account_jid_id "$account_id")" "$output_dir/your_avatar" | head -1)"
|
||||||
|
if test -z "$THEIR_AVATAR"; then
|
||||||
|
THEIR_AVATAR="files/their_avatar.png"
|
||||||
|
fi
|
||||||
|
if test -z "$YOUR_AVATAR"; then
|
||||||
|
YOUR_AVATAR="files/your_avatar.png"
|
||||||
|
fi
|
||||||
|
|
||||||
local files="$(sqlite "$DB_FILE" \
|
local files="$(sqlite "$DB_FILE" \
|
||||||
"SELECT path
|
"SELECT path
|
||||||
|
|
Ŝarĝante…
Reference in New Issue