Merge pull request #123 from jace1427/master

fix: Callout bug
This commit is contained in:
Idrees 2025-11-29 12:08:01 -05:00 committed by GitHub
commit e85b662fa1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -256,7 +256,7 @@ export default class Waypoint extends Plugin {
waypointStart = i;
continue;
}
if (waypointStart !== -1 && trimmed === endWaypoint) {
if (waypointStart !== -1 && trimmed.includes(endWaypoint)) {
waypointEnd = i;
break;
}