Skip to content

Commit

Permalink
Update ScriptureBurritoUtils.kt
Browse files Browse the repository at this point in the history
Slug for current scope needs to be uppercase
  • Loading branch information
jsarabia committed Jun 10, 2024
1 parent d115bcf commit b350376
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class ScriptureBurritoUtils @Inject constructor(
).apply {
name = "audioTranslation"
currentScope = ScopeSchema().apply {
this[workbook.target.slug] = takes.keys.map { "$it" }.toMutableList()
this[workbook.target.slug.uppercase(Locale.US)] = takes.keys.map { "$it" }.toMutableList()
}
}
}
Expand Down

0 comments on commit b350376

Please sign in to comment.