alpha
Login
or
Join now
atpota.to
/
flushes.app
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix
author
damedotblog
date
1 year ago
(Mar 15, 2025, 9:51 PM -0400)
commit
8299bf32
8299bf32f2b7713f11f50d24fd09017a3de439d6
parent
6b0e5b01
6b0e5b01ce4f371a8ad2997de45463b1a66c79cc
+2
-2
1 changed file
Expand all
Collapse all
Unified
Split
app
src
app
api
bluesky
profile
route.ts
+2
-2
app/src/app/api/bluesky/profile/route.ts
Reviewed
···
222
222
succeeded = true;
223
223
break;
224
224
} else {
225
225
-
console.warn(`Failed with URL ${url}: ${pdsDirectResponse.status}`);
225
225
+
console.warn(`Failed with URL ${url}: ${pdsDirectResponse?.status || 'unknown status'}`);
226
226
}
227
227
} catch (urlErr) {
228
228
console.error(`Error trying URL ${url}: ${urlErr}`);
···
311
311
succeeded = true;
312
312
break;
313
313
} else {
314
314
-
console.warn(`Failed with URL ${url}: ${domainResponse.status}`);
314
314
+
console.warn(`Failed with URL ${url}: ${domainResponse?.status || 'unknown status'}`);
315
315
}
316
316
} catch (urlErr) {
317
317
console.error(`Error trying URL ${url}: ${urlErr}`);