diff --git a/app/views/post_versions/_listing.html.erb b/app/views/post_versions/_listing.html.erb
index bb5acf24d..538c659e8 100644
--- a/app/views/post_versions/_listing.html.erb
+++ b/app/views/post_versions/_listing.html.erb
@@ -17,7 +17,11 @@
| <%= link_to(post_version.post_id, post_path(post_version.post_id)) %> |
<%= compact_time(post_version.updated_at) %> |
- <%= link_to(post_version.updater.name, user_path(post_version.updater_id)) %> |
+
+ <% if post_version.updater %>
+ <%= link_to(post_version.updater.name, user_path(post_version.updater_id)) %>
+ <% end %>
+ |
<%= post_version.rating %> |
<%= post_version.parent_id %> |
|