nice clean recipes pear.dunkirk.sh
recipes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: fix redirect loop

+3 -1
+3 -1
main.go
··· 203 203 s.failedMu.Lock() 204 204 delete(s.failed, targetURL) 205 205 s.failedMu.Unlock() 206 - // fall through to normal flow (no cache hit → re-extract) 206 + // Redirect to same path without query params to avoid loop 207 + http.Redirect(w, r, path, http.StatusSeeOther) 208 + return 207 209 } 208 210 209 211 recipe, err := s.cache.Get(targetURL)