Added api check for ConnectionManagerRequestService.handleDropdown

This commit is contained in:
bmen25124
2025-04-01 04:39:41 +03:00
parent 26d0f01d69
commit 50b2eeb61f

View File

@ -384,7 +384,7 @@ export class ConnectionManagerRequestService {
* @returns {boolean}
*/
static isProfileSupported(profile) {
if (!profile) {
if (!profile || !profile.api) {
return false;
}