🐛 Fix post metadata uses wrong key to deserialize

This commit is contained in:
2026-01-03 12:45:28 +08:00
parent 188b6821a2
commit 703335429a
7 changed files with 18 additions and 26 deletions

View File

@@ -46,4 +46,4 @@ final class SubscribedFeedsProvider
}
}
String _$subscribedFeedsHash() => r'5c0c8c30c5f543f6ea1d39786a6778f77ba5b3df';
String _$subscribedFeedsHash() => r'91d6f909a3d2c9f68028550223f7c7b2128727d2';

View File

@@ -64,7 +64,7 @@ final class MarketplaceWebFeedProvider
}
String _$marketplaceWebFeedHash() =>
r'8383f94f1bc272b903c341b8d95000313b69d14c';
r'36f3235ba346b0d416ce5e66dca8d6cecbafb608';
final class MarketplaceWebFeedFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<SnWebFeed>, String> {
@@ -141,7 +141,7 @@ final class MarketplaceWebFeedSubscriptionProvider
}
String _$marketplaceWebFeedSubscriptionHash() =>
r'2ff06a48ed7d4236b57412ecca55e94c0a0b6330';
r'6efa43b4d7e2ab62a721a67e035038dcf63be524';
/// Provider for web feed subscription status

View File

@@ -485,7 +485,7 @@ class PostDetailScreen extends HookConsumerWidget {
SliverToBoxAdapter(
child: Center(
child: ConstrainedBox(
constraints: BoxConstraints(maxWidth: 600),
constraints: BoxConstraints(maxWidth: 800),
child: PostActionButtons(
post: post,
renderingPadding: const EdgeInsets.symmetric(
@@ -506,7 +506,7 @@ class PostDetailScreen extends HookConsumerWidget {
),
),
),
PostRepliesList(postId: id, maxWidth: 600),
PostRepliesList(postId: id, maxWidth: 800),
SliverGap(MediaQuery.of(context).padding.bottom + 80),
],
),