fix empty files
This commit is contained in:
parent
ad76febf40
commit
63e3e78dba
|
@ -118,7 +118,7 @@ class AnnouncementFeedsController < ApplicationController
|
||||||
b = {}
|
b = {}
|
||||||
b["description_translations"] = bf.description_translations
|
b["description_translations"] = bf.description_translations
|
||||||
b["title_translations"] = bf.title_translations
|
b["title_translations"] = bf.title_translations
|
||||||
b["url"] = "#{request.base_url}" + bf.file.url
|
b["url"] = ("#{request.base_url}" + bf.file.url rescue "")
|
||||||
a["bulletin_files"] << b
|
a["bulletin_files"] << b
|
||||||
end
|
end
|
||||||
all_anns << a
|
all_anns << a
|
||||||
|
|
Loading…
Reference in New Issue