Skip to content

Commit

Permalink
fix(webkit): Fix default User-Agent (#2886)
Browse files Browse the repository at this point in the history
Co-authored-by: pspaul <pspaul@pspaul.de>
  • Loading branch information
pspaul and pspaul committed Jul 8, 2020
1 parent f5911de commit 71713c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webkit/wkBrowser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { Protocol } from './protocol';
import { kPageProxyMessageReceived, PageProxyMessageReceivedPayload, WKConnection, WKSession } from './wkConnection';
import { WKPage } from './wkPage';

const DEFAULT_USER_AGENT = '"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15';
const DEFAULT_USER_AGENT = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15';

export class WKBrowser extends BrowserBase {
private readonly _connection: WKConnection;
Expand Down

0 comments on commit 71713c9

Please sign in to comment.