mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-04 03:36:44 +08:00
Fix missing user placeholder icon in export_all
This commit is contained in:
parent
96ef0c10da
commit
b9f77bf4fd
1 changed files with 7 additions and 0 deletions
|
@ -202,6 +202,13 @@ module ApplicationHelper
|
||||||
return user.convert_variant_to_base64(avatar_link) if base64_encoded_imgs
|
return user.convert_variant_to_base64(avatar_link) if base64_encoded_imgs
|
||||||
|
|
||||||
avatar_link.processed.service_url(expires_in: Constants::URL_LONG_EXPIRE_TIME)
|
avatar_link.processed.service_url(expires_in: Constants::URL_LONG_EXPIRE_TIME)
|
||||||
|
elsif base64_encoded_imgs
|
||||||
|
file_path = Rails.root.join('app', 'assets', *avatar_link.split('/'))
|
||||||
|
encoded_data =
|
||||||
|
File.open(file_path) do |file|
|
||||||
|
Base64.strict_encode64(file.read)
|
||||||
|
end
|
||||||
|
"data:#{avatar_link.split('.').last};base64,#{encoded_data}"
|
||||||
else
|
else
|
||||||
avatar_link
|
avatar_link
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue