Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export default class Waypoint extends Plugin {
}
}
const [beginWaypoint, endWaypoint] = await this.getWaypointBounds(flagType);
let waypoint = `${beginWaypoint}\n${fileTree}\n\n${endWaypoint}`;
let waypoint = `${beginWaypoint}\n${fileTree}\n${endWaypoint}`;
if (beginWaypoint === null || endWaypoint === null) {
console.error("Error: Waypoint bounds not found, unable to continue.");
return;
Expand Down