diff -r fd6b09e93623 -r b688fe79f593 plugins/redmine_bibliography/app/models/author.rb
--- a/plugins/redmine_bibliography/app/models/author.rb
+++ b/plugins/redmine_bibliography/app/models/author.rb
@@ -34,13 +34,12 @@
     end
   end
 
+  # todo: need to fix the name getter
   def name
-    if self.name.nil?
-      if self.authorships.first.nil?
-        ""
-      else
-        self.authorships.first.name
-      end
+    if self.authorships.first.nil?
+      ""
+    else
+      self.authorships.first.name
     end
   end
 
