Skip to content

Commit

Permalink
fixed open daf yomi
Browse files Browse the repository at this point in the history
  • Loading branch information
Sivan22 committed Aug 18, 2024
1 parent 039fa7b commit d42509d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/utils/daf_yomi_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Future<TocEntry?> _findDafInToc(TextBook book, String daf) async {
TocEntry? findDafInEntries(List<TocEntry> entries) {
for (var entry in entries) {
String ref = entry.text;
if (ref.contains('דף $daf')) {
if (ref.contains('דף ${daf.trim()}')) {
return entry;
}
// Recursively search in children
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msix_config:
display_name: אוצריא
publisher_display_name: sivan22
identity_name: sivan22.Otzaria
msix_version: 0.1.8.6
msix_version: 0.1.8.7
logo_path: assets/icon/icon.png
publisher: CN=sivan22, O=sivan22, C=IL
certificate_path: C:\dev\sivan22.pfx
Expand All @@ -33,7 +33,7 @@ msix_config:
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 0.1.8-beta.1
version: 0.1.8-beta.2

environment:
sdk: ">=3.2.6 <4.0.0"
Expand Down

0 comments on commit d42509d

Please sign in to comment.