Index: src/views/pages/hub-home.ejs
===================================================================
--- src/views/pages/hub-home.ejs	(revision a64f642ec61d1349904508f7af00155c05bd3c72)
+++ src/views/pages/hub-home.ejs	(revision ab544fd29596ce8734fe93bc1d317872adc0b665)
@@ -38,6 +38,7 @@
         <% artists.forEach(function(a){ %>
           <a class="roster-card" href="/user/<%= a.slug %>">
-            <span class="roster-avatar"<% if (a.profile_photo) { %> style="background-image:url('<%= a.profile_photo %>')"<% } else { %> style="background:<%= a.accent || 'var(--accent)' %>;color:#fff"<% } %>>
-              <% if (!a.profile_photo) { %><%= (a.title || a.slug).charAt(0).toUpperCase() %><% } %>
+            <% var _ava = a.profile_photo || a.owner_avatar; %>
+            <span class="roster-avatar"<% if (_ava) { %> style="background-image:url('<%= _ava %>')"<% } else { %> style="background:<%= a.accent || 'var(--accent)' %>;color:#fff"<% } %>>
+              <% if (!_ava) { %><%= (a.title || a.slug).charAt(0).toUpperCase() %><% } %>
             </span>
             <span class="roster-name"><%= a.title %></span>
Index: src/views/partials/profile-header.ejs
===================================================================
--- src/views/partials/profile-header.ejs	(revision a64f642ec61d1349904508f7af00155c05bd3c72)
+++ src/views/partials/profile-header.ejs	(revision ab544fd29596ce8734fe93bc1d317872adc0b665)
@@ -37,8 +37,8 @@
        hx-push-url="<%= (typeof siteUrlBase !== 'undefined' && siteUrlBase) ? siteUrlBase : '' %>/"
        hx-indicator="#pcms-loading" aria-label="Home">
-      <% if (typeof user !== 'undefined' && user && user.avatar_url) { %>
-        <img src="<%= user.avatar_url %>" alt="">
-      <% } else if (site.profile_photo) { %>
+      <% if (site.profile_photo) { %>
         <img src="<%= site.profile_photo %>" alt="">
+      <% } else if (typeof siteOwnerAvatar !== 'undefined' && siteOwnerAvatar) { %>
+        <img src="<%= siteOwnerAvatar %>" alt="">
       <% } else if (site.enable_audio_player) { %>
         <span class="profile-photo-fallback profile-photo-fallback--music" aria-hidden="true">
