Revert "refactor: nyaize on the frontend"

This reverts commit aff90b3ef2.
This commit is contained in:
ThatOneCalculator 2023-03-23 09:06:32 -07:00
parent d05ab9bf46
commit d5cafde7d1
No known key found for this signature in database
GPG key ID: 8703CACD01000000
3 changed files with 3 additions and 7 deletions

View file

@ -12,6 +12,7 @@ import {
Channels,
} from "../index.js";
import type { Packed } from "@/misc/schema.js";
import { nyaize } from "@/misc/nyaize.js";
import { awaitAll } from "@/prelude/await-all.js";
import {
convertLegacyReaction,
@ -262,7 +263,7 @@ export const NoteRepository = db.getRepository(Note).extend({
: {}),
});
/* if (packed.user.isCat && packed.text) {
if (packed.user.isCat && packed.text) {
const tokens = packed.text ? mfm.parse(packed.text) : [];
mfm.inspect(tokens, (node) => {
if (node.type === "text") {
@ -271,7 +272,7 @@ export const NoteRepository = db.getRepository(Note).extend({
}
});
packed.text = mfm.toString(tokens);
} */
}
return packed;
},

View file

@ -91,7 +91,6 @@ import { instance } from '@/instance';
import { $i, getAccounts, openAccountMenu as openAccountMenu_ } from '@/account';
import { uploadFile } from '@/scripts/upload';
import { deepClone } from '@/scripts/clone';
import { nyaize } from '@/scripts/nyaize';
import XCheatSheet from '@/components/MkCheatSheetDialog.vue';
const modal = inject('modal');
@ -583,10 +582,6 @@ async function post() {
}
}
if ($i?.isCat && (postData.text != null || postData.text!.length === 0)) {
postData.text = nyaize(`${postData.text}`);
}
let token = undefined;
if (postAccount) {