mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-13 13:37:31 -07:00
chore: 🎨 format
This commit is contained in:
parent
8512744828
commit
9b2cc17d3e
5 changed files with 15 additions and 10 deletions
|
@ -46,7 +46,7 @@ function processMastoFile(fn: string, path: string, dir: string, uid: string) {
|
|||
for (const note of outbox.orderedItems) {
|
||||
for (const attachment of note.object.attachment) {
|
||||
const url = attachment.url.replaceAll("..", "");
|
||||
if (url.indexOf('\0') !== -1) {
|
||||
if (url.indexOf("\0") !== -1) {
|
||||
logger.error(`Found Poison Null Bytes Attack: ${url}`);
|
||||
reject();
|
||||
return;
|
||||
|
|
|
@ -16,7 +16,10 @@ async function getRelMeLinks(url: string): Promise<string[]> {
|
|||
}
|
||||
}
|
||||
|
||||
export async function verifyLink(link: string, username: string): Promise<boolean> {
|
||||
export async function verifyLink(
|
||||
link: string,
|
||||
username: string,
|
||||
): Promise<boolean> {
|
||||
let verified = false;
|
||||
if (link.startsWith("http")) {
|
||||
const relMeLinks = await getRelMeLinks(link);
|
||||
|
|
|
@ -61,11 +61,13 @@
|
|||
<div class="buttons">
|
||||
<button
|
||||
v-if="media.comment"
|
||||
v-tooltip.noLabel="`${i18n.ts.alt}: ${
|
||||
media.comment.length > 200 ?
|
||||
media.comment.trim().slice(0, 200) + '...'
|
||||
: media.comment.trim()
|
||||
}`"
|
||||
v-tooltip.noLabel="
|
||||
`${i18n.ts.alt}: ${
|
||||
media.comment.length > 200
|
||||
? media.comment.trim().slice(0, 200) + '...'
|
||||
: media.comment.trim()
|
||||
}`
|
||||
"
|
||||
:aria-label="i18n.ts.alt"
|
||||
class="_button"
|
||||
@click.stop="captionPopup"
|
||||
|
|
|
@ -127,8 +127,8 @@
|
|||
</FormFolder>
|
||||
<template #caption>{{
|
||||
i18n.t("_profile.metadataDescription", {
|
||||
a: '<code><a></code>',
|
||||
l: '<code><a></code>',
|
||||
a: '\<code\>\<a\>\</code\>',
|
||||
l: '\<code\>\<a\>\</code\>',
|
||||
rel: `rel="me" href="https://${host}/@${$i.username}"`
|
||||
})
|
||||
}}</template>
|
||||
|
|
|
@ -755,7 +755,7 @@ onUnmounted(() => {
|
|||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
&.verified {
|
||||
&.verified {
|
||||
background-color: var(--hover);
|
||||
border-radius: 10px;
|
||||
color: var(--badge) !important;
|
||||
|
|
Loading…
Reference in a new issue