Remove unused parameter in LinkPreviewViewModel.

This commit is contained in:
Alex Hart
2024-09-23 09:53:46 -03:00
parent eab1f5944d
commit fde78cf5b8
3 changed files with 4 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ class TextStoryPostLinkEntryFragment : KeyboardEntryDialogFragment(
Triple("$scheme$it", input.selectionStart + scheme.length, input.selectionEnd + scheme.length)
}
linkPreviewViewModel.onTextChanged(requireContext(), uriString.toString(), selectionStart, selectionEnd)
linkPreviewViewModel.onTextChanged(uriString.toString(), selectionStart, selectionEnd)
}
)