Skip to content

Commit

Permalink
PREAPPS-7390: revert prev change
Browse files Browse the repository at this point in the history
  • Loading branch information
miteshsavani810 committed Aug 2, 2023
1 parent 42d46c7 commit 06bad05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/batch-client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ export class ZimbraBatchClient {
public localStoreClient: any;
public notifier: Notifier;
public origin: string;
public serverUrlZimbra: string;
public serverUrl: string;
public sessionId: any;
public soapPathname: string;
private agent?: any;
Expand All @@ -299,7 +299,7 @@ export class ZimbraBatchClient {
private userAgent?: {};

constructor(options: ZimbraClientOptions = {}) {
this.serverUrlZimbra = options.serverUrlZimbra !== undefined ? options.serverUrlZimbra : '';
this.serverUrl = options.serverUrl !== undefined ? options.serverUrl : '';
this.sessionHandler = options.sessionHandler;
this.userAgent = options.userAgent;
this.jwtToken = options.jwtToken;
Expand Down
2 changes: 1 addition & 1 deletion src/batch-client/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export interface ZimbraClientOptions {
jwtToken?: string;
localStoreClient?: any;
notificationHandler?: NotificationHandler;
serverUrlZimbra?: string;
serverUrl?: string;
sessionHandler?: SessionHandler;
soapPathname?: string;
userAgent?: UserAgent;
Expand Down

0 comments on commit 06bad05

Please sign in to comment.