Spaces:
Sleeping
Sleeping
fallback image
Browse files
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 |
-
"
|
| 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
|