-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue where sandbox not initializing.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ | |
* @Description : | ||
* @Author : [email protected] | ||
* @Group : | ||
* @Last Modified By : | ||
* @Last Modified On : 09-15-2024 | ||
* @Last Modified By : [email protected] | ||
* @Last Modified On : 11-26-2024 | ||
* @Modification Log : | ||
* Ver Date Author Modification | ||
* 1.0 6/11/2020 [email protected] Initial Version | ||
|
@@ -470,7 +470,7 @@ global with sharing class ListViewConfigHelper { | |
throw new ListViewException('Found more than one list view config with name - ' + listViewName + ' and object - ' + objectName); | ||
else if (configs.size() == 0) { | ||
if (objectName == 'All' && listViewName == 'All') | ||
throw new ListViewException('Global config not found. Go to the admin page and either import a config file or create a new config'); | ||
configs.add(ListViewHelper.insertCoreGlobalConfig()); | ||
else | ||
return null; | ||
//throw new ListViewException('No list view config was found with name - ' + listViewName + ' and object - ' + objectName); | ||
|