We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9c27cc commit 3c874c9Copy full SHA for 3c874c9
src/services.ts
@@ -63,7 +63,7 @@ export function fetchLatestTopics(options?: RequestInit) {
63
}
64
65
export function fetchHotTopics(options?: RequestInit) {
66
- return legacyRequest<Topic[]>(`${V2EX_LEGACY_API}/topics/hot.json`, options)
+ return legacyRequest<Topic[]>(`${V2EX_LEGACY_API}/topics/hot.json?r=${Date.now()}`, options)
67
68
69
async function request<Data>(url: string, options?: RequestInit): Promise<DataWrapper<Data>> {
0 commit comments