intermediate
This commit is contained in:
@@ -78,13 +78,13 @@ class TabRepository extends _$TabRepository {
|
||||
|
||||
final tabContentSub =
|
||||
tabContentService.tabContentStream.listen((content) async {
|
||||
await _db.tabDao.updateTab(
|
||||
await _db.tabDao.updateTabContent(
|
||||
content.tabId,
|
||||
isProbablyReaderable: Value(content.isProbablyReaderable),
|
||||
extractedContentMarkdown: Value(content.extractedContentMarkdown),
|
||||
extractedContentPlain: Value(content.extractedContentPlain),
|
||||
fullContentMarkdown: Value(content.fullContentMarkdown),
|
||||
fullContentPlain: Value(content.fullContentPlain),
|
||||
isProbablyReaderable: content.isProbablyReaderable,
|
||||
extractedContentMarkdown: content.extractedContentMarkdown,
|
||||
extractedContentPlain: content.extractedContentPlain,
|
||||
fullContentMarkdown: content.fullContentMarkdown,
|
||||
fullContentPlain: content.fullContentPlain,
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ part of 'tab.dart';
|
||||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
String _$tabRepositoryHash() => r'4269add3c89250ab30835055e3567a1e6d5c185a';
|
||||
String _$tabRepositoryHash() => r'b9caf89fe372b79f37c4a3ebff800ccc2d9289d2';
|
||||
|
||||
/// See also [TabRepository].
|
||||
@ProviderFor(TabRepository)
|
||||
|
||||
Reference in New Issue
Block a user