Skip to content

Commit

Permalink
fix derp
Browse files Browse the repository at this point in the history
  • Loading branch information
NyaomiDEV committed Feb 11, 2025
1 parent 3746a8d commit 50634d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/db/external/simplyplural.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export async function importSimplyPlural(spExport) {
try {
member.image = new File(
[await (await fetch(spMember.avatarUrl)).blob()],
spMember.avatarUrl.avatarUrl.split("/").pop()
spMember.avatarUrl.split("/").pop()
);
} catch (e) {
// whatever
Expand Down Expand Up @@ -119,7 +119,7 @@ export async function importSimplyPlural(spExport) {
try {
member.image = new File(
[await (await fetch(spCustomFront.avatarUrl)).blob()],
spCustomFront.avatarUrl.avatarUrl.split("/").pop()
spCustomFront.avatarUrl.split("/").pop()
);
} catch (e) {
// whatever
Expand Down

0 comments on commit 50634d2

Please sign in to comment.