public static void UpdateLastSelectedCollectionSetting(CollectionViewModel collectionViewModel) { if (collectionViewModel.isDefault) { App.AppSettings.CollectionLocationsSettings.LastSelectedCollection = Constants.Collections.DEFAULT_COLLECTION_TOKEN; } else { App.AppSettings.CollectionLocationsSettings.LastSelectedCollection = collectionViewModel.DangerousGetCollectionFolder()?.Path; } }