chore: 🎨 format

This commit is contained in:
ThatOneCalculator 2023-07-17 17:38:27 -07:00
parent aa7d16febb
commit b54dfff32f
No known key found for this signature in database
GPG key ID: 8703CACD01000000
5 changed files with 15 additions and 10 deletions

View file

@ -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;

View file

@ -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);

View file

@ -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"

View file

@ -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>

View file

@ -755,7 +755,7 @@ onUnmounted(() => {
margin-bottom: 8px;
}
&.verified {
&.verified {
background-color: var(--hover);
border-radius: 10px;
color: var(--badge) !important;