Skip to content

Commit

Permalink
Merge pull request #46 from Nexus-Mods/16229-fixed-loot-sort-error-re…
Browse files Browse the repository at this point in the history
…port

fixed inability to report some LOOT sorting errors
  • Loading branch information
insomnious authored Aug 14, 2024
2 parents af5e138 + fcef3de commit fb5a070
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.9.1] - 2024-08-14

- Fixed inability to report _some_ loot sorting errors

## [1.9.0] - 2024-08-12

- Versioning tidy up
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "starfield",
"version": "1.9.0",
"version": "1.9.1",
"description": "Vortex Extension for Starfield",
"author": "Nexus Mods",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ export async function lootSort(api: types.IExtensionApi) {
});
const onSortCallback = async (err: Error, result: string[]) => {
if (err) {
api.showErrorNotification('LOOT sort failed', err.message);
api.showErrorNotification('LOOT sort failed', err);
api.dismissNotification('starfield-fblo-loot-sorting');
return;
}
Expand Down

0 comments on commit fb5a070

Please sign in to comment.