# HG changeset patch # User Claus Gittinger # Date 1455232070 -3600 # Node ID 335aa560bb05b678e194b15f335c7904c0c4ab68 # Parent 4347775e9885f7336bfe0d35e353b05c2c904921 #BUGFIX class: AbstractLauncherApplication diff -r 4347775e9885 -r 335aa560bb05 AbstractLauncherApplication.st --- a/AbstractLauncherApplication.st Thu Feb 11 23:40:16 2016 +0100 +++ b/AbstractLauncherApplication.st Fri Feb 12 00:07:50 2016 +0100 @@ -7482,10 +7482,14 @@ ] on:PackageLoadError do:[:ex | |path| - path := pathByItem at:someItem. - "/ try to load the file as is (i.e. not via package-id - (Dialog information:'package ID inconsistency - loading file directly...'). - Smalltalk fileIn:(packageDirPath asFilename / path). + path := pathByItem at:someItem ifAbsent:nil. + path isNil ifTrue:[ + (Dialog information:'package ID inconsistency - cannot load...'). + ] ifFalse:[ + "/ try to load the file as is (i.e. not via package-id + (Dialog information:'package ID inconsistency - loading file directly...'). + Smalltalk fileIn:(packageDirPath asFilename / path). + ]. ] ] ensure:[ Smalltalk retractInterestsFor:updateAction.