Fix id of Items, saving

This commit is contained in:
Christoph Hagen
2025-06-11 08:19:44 +02:00
parent 5970ce2e9f
commit 1d0eba9d78
64 changed files with 233 additions and 217 deletions

View File

@ -44,7 +44,7 @@ struct PostContentGenerator {
}
private var postDescription: String {
"content of post \(post.id) (\(language.shortText))"
"content of post \(post.identifier) (\(language.shortText))"
}
private func handleLink(

View File

@ -95,7 +95,7 @@ final class PostListPageGenerator {
post: post).generate()
return FeedEntryData(
entryId: post.id,
entryId: post.identifier,
title: localized.title,
textAboveTitle: post.dateText(in: language),
link: linkUrl,