nonsodev commited on
Commit
0c35dcc
·
1 Parent(s): 2b2cc6c

fallback image

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -61,7 +61,7 @@ try:
61
  # Better fallback image handling
62
  books["large_thumbnail"] = np.where(
63
  books["large_thumbnail"].isna() | books["thumbnail"].isna(),
64
- "https://via.placeholder.com/120x180/333333/cccccc?text=No+Cover",
65
  books["large_thumbnail"]
66
  )
67
  # Ensure 'authors' and 'categories' are string type for literal search
 
61
  # Better fallback image handling
62
  books["large_thumbnail"] = np.where(
63
  books["large_thumbnail"].isna() | books["thumbnail"].isna(),
64
+ "cover-not-found.jpg",
65
  books["large_thumbnail"]
66
  )
67
  # Ensure 'authors' and 'categories' are string type for literal search