···184184 loadWG.Wait()
185185186186 if recipe.OriginHash == "" {
187187+ // Would like to make this an error however this in album is missing a origin hash and its too pretty to break
188188+ // https://careme.cooking/recipe/mQs4oIYMJoqCmqDMXv74bA==
189189+ if hash == "mQs4oIYMJoqCmqDMXv74bA==" {
190190+ slog.InfoContext(ctx, "recipe missing origin hash Probably and old recipe", "hash", hash)
191191+ p := DefaultParams(&locations.Location{
192192+ ID: "",
193193+ Name: "Unknown Location",
194194+ }, time.Now())
195195+ FormatRecipeHTML(ctx, p, *recipe, signedIn, hasRecipeImage, thread, feedback, wineRecommendation, w)
196196+ return
197197+ }
187198 slog.ErrorContext(ctx, "No origin hash for recipe", "hash", hash, "error", err)
188199 http.Error(w, "recipe not found or expired", http.StatusInternalServerError)
189200 return