fix: post editing meta

This commit is contained in:
ThatOneCalculator 2023-06-06 12:11:15 -07:00
parent 84506b606d
commit f621e58efa
No known key found for this signature in database
GPG key ID: 8703CACD01000000
2 changed files with 8 additions and 2 deletions

View file

@ -52,7 +52,8 @@ import { UserProfiles } from "@/models/index.js";
import { In } from "typeorm";
import { DB_MAX_IMAGE_COMMENT_LENGTH } from "@/misc/hard-limits.js";
import { truncate } from "@/misc/truncate.js";
import { type Size, getEmojiSize } from "@/misc/emoji-meta.js";
import { type Size, getEmojiSize } from "@/misc/emoji-meta.js";\
import { fetchMeta } from "@/misc/fetch-meta.js";
const logger = apLogger;
@ -544,6 +545,10 @@ function notEmpty(partial: Partial<any>) {
export async function updateNote(value: string | IObject, resolver?: Resolver) {
const uri = typeof value === "string" ? value : value.id;
if (!uri) throw new Error("Missing note uri");
const instanceMeta = await fetchMeta();
if (instanceMeta.experimentalFeatures?.postEdits === false) {
throw new Error("Post edits disabled.");
}
// Skip if URI points to this server
if (uri.startsWith(`${config.url}/`)) throw new Error("uri points local");

View file

@ -244,8 +244,9 @@ export default define(meta, paramDef, async (ps, user) => {
if (user.movedToUri != null) throw new ApiError(meta.errors.accountLocked);
const instanceMeta = await fetchMeta();
if (instanceMeta.experimentalFeatures?.postImports === false)
if (instanceMeta.experimentalFeatures?.postEdits === false) {
throw new ApiError(meta.errors.editsDisabled);
}
if (!Users.isLocalUser(user)) {
throw new ApiError(meta.errors.notLocalUser);