Merge branch 'fix/avatar-cover-update-issue' into 'develop'
avatar/header serializer issue for accounts with imported data from legacy fixed See merge request gab/social/gab-social!17
This commit is contained in:
commit
38c08355e6
@ -33,7 +33,7 @@ class REST::AccountSerializer < ActiveModel::Serializer
|
|||||||
end
|
end
|
||||||
|
|
||||||
def avatar
|
def avatar
|
||||||
if object.avatar_remote_url and object.avatar_remote_url.start_with? "gab://avatar/"
|
if object.avatar_file_name.nil? and object.avatar_remote_url and object.avatar_remote_url.start_with? "gab://avatar/"
|
||||||
return object.avatar_remote_url.sub("gab://avatar/", "https://gab.com/media/user/")
|
return object.avatar_remote_url.sub("gab://avatar/", "https://gab.com/media/user/")
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ class REST::AccountSerializer < ActiveModel::Serializer
|
|||||||
end
|
end
|
||||||
|
|
||||||
def avatar_static
|
def avatar_static
|
||||||
if object.avatar_remote_url and object.avatar_remote_url.start_with? "gab://avatar/"
|
if object.avatar_file_name.nil? and object.avatar_remote_url and object.avatar_remote_url.start_with? "gab://avatar/"
|
||||||
return object.avatar_remote_url.sub("gab://avatar/", "https://gab.com/media/user/")
|
return object.avatar_remote_url.sub("gab://avatar/", "https://gab.com/media/user/")
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -49,7 +49,7 @@ class REST::AccountSerializer < ActiveModel::Serializer
|
|||||||
end
|
end
|
||||||
|
|
||||||
def header
|
def header
|
||||||
if object.header_remote_url and object.header_remote_url.start_with? "gab://header/"
|
if object.header_file_name.nil? and object.header_remote_url and object.header_remote_url.start_with? "gab://header/"
|
||||||
return object.header_remote_url.sub("gab://header/", "https://gab.com/media/user/")
|
return object.header_remote_url.sub("gab://header/", "https://gab.com/media/user/")
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -57,7 +57,7 @@ class REST::AccountSerializer < ActiveModel::Serializer
|
|||||||
end
|
end
|
||||||
|
|
||||||
def header_static
|
def header_static
|
||||||
if object.header_remote_url and object.header_remote_url.start_with? "gab://header/"
|
if object.header_file_name.nil? and object.header_remote_url and object.header_remote_url.start_with? "gab://header/"
|
||||||
return object.header_remote_url.sub("gab://header/", "https://gab.com/media/user/")
|
return object.header_remote_url.sub("gab://header/", "https://gab.com/media/user/")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user