mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-11-22 14:05:12 +00:00
various fixes after the merge
This commit is contained in:
parent
1169614b7c
commit
bf710428eb
3 changed files with 6 additions and 8 deletions
|
@ -524,7 +524,7 @@ export class NoteEditService implements OnApplicationShutdown {
|
|||
noteVisibility: note.visibility,
|
||||
userId: user.id,
|
||||
userHost: user.host,
|
||||
channelId: data.channelId,
|
||||
channelId: data.channel ? data.channel.id : null,
|
||||
});
|
||||
|
||||
if (!oldnote.hasPoll) {
|
||||
|
|
|
@ -287,7 +287,7 @@ export class ExportAccountDataProcessorService {
|
|||
const mutings = await this.mutingsRepository.findBy({
|
||||
muterId: user.id,
|
||||
});
|
||||
|
||||
|
||||
while (true) {
|
||||
const followings = await this.followingsRepository.find({
|
||||
where: {
|
||||
|
@ -353,7 +353,7 @@ export class ExportAccountDataProcessorService {
|
|||
|
||||
let followersCursor: MiFollowing['id'] | null = null;
|
||||
let exportedFollowersCount = 0;
|
||||
|
||||
|
||||
while (true) {
|
||||
const followers = await this.followingsRepository.find({
|
||||
where: {
|
||||
|
@ -680,7 +680,6 @@ export class ExportAccountDataProcessorService {
|
|||
localOnly: antenna.localOnly,
|
||||
withReplies: antenna.withReplies,
|
||||
withFile: antenna.withFile,
|
||||
notify: antenna.notify,
|
||||
}));
|
||||
|
||||
if (antennas.length - 1 !== index) {
|
||||
|
@ -749,9 +748,9 @@ export class ExportAccountDataProcessorService {
|
|||
cleanup();
|
||||
archiveCleanup();
|
||||
if (profile.email) {
|
||||
this.emailService.sendEmail(profile.email,
|
||||
'Your data archive is ready',
|
||||
`Click the following link to download the archive: ${driveFile.url}<br/>It is also available in your drive.`,
|
||||
this.emailService.sendEmail(profile.email,
|
||||
'Your data archive is ready',
|
||||
`Click the following link to download the archive: ${driveFile.url}<br/>It is also available in your drive.`,
|
||||
`Click the following link to download the archive: ${driveFile.url}\r\n\r\nIt is also available in your drive.`,
|
||||
);
|
||||
}
|
||||
|
|
|
@ -55,7 +55,6 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
}
|
||||
|
||||
await this.federatedInstanceService.update(instance.id, {
|
||||
isSuspended: ps.isSuspended,
|
||||
suspensionState,
|
||||
isNSFW: ps.isNSFW,
|
||||
moderationNote: ps.moderationNote,
|
||||
|
|
Loading…
Reference in a new issue