diff --git a/src/ws/handlers/program.js b/src/ws/handlers/program.js
index 347729e57eba5d1407a38ab4ea637b803ea96fe2..d9952e5174652432bf7f68017d9e1ead88d50469 100644
--- a/src/ws/handlers/program.js
+++ b/src/ws/handlers/program.js
@@ -1,5 +1,6 @@
 import has from "lodash/has";
 
+import { loadPosts } from "actions/posts";
 import { markdownConverter } from "markdown";
 import { ProgramStore } from "stores";
 
@@ -28,4 +29,9 @@ export const handleProgramEntryChanged = (payload) => {
       }
     }
   });
+
+  if (has(payload, "is_live") && payload.is_live) {
+    // Re-load posts - these are bound directly to the program schedule entry.
+    loadPosts.run({}, { respectCache: false });
+  }
 };