Update to use get_value from the latest organic code.

This commit is contained in:
Tom Alexander 2023-10-31 22:03:22 -04:00
parent e8963e107b
commit 270c42a509
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ pub(crate) struct ISrcBlock {
intermediate!(ISrcBlock, SrcBlock, original, _registry, {
let lines = original
.contents
.get_value()
.split_inclusive('\n')
.map(|s| s.to_owned())
.collect();