found the answer here:
https://www.ads-software.com/support/topic/231583?replies=2#post-1091223
the solution is to change line 25 in album-extend.php from
<a href="<?php echo $gallery->pagelink ?>"><img class="Thumb" alt="<?php echo $gallery->title ?>" src="<?php echo $gallery->previewurl ?>"/></a>
to
<a href="<?php echo get_permalink( $gallery->pageid ) ?>"><img class="Thumb" alt="<?php echo $gallery->title ?>" src="<?php echo $gallery->previewurl ?>"/></a>
$gallery->pagelink
changes to get_permalink( $gallery->pageid )