aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/instagram/index.js
blob: 2c7de64bccbcc3f2ebabc5c51ffe13b84229532e (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = Franz => class Instagram extends Franz {
  overrideUserAgent() {
    return window.navigator.userAgent.replace(
      /(Ferdi|Electron)\/\S+ \([^)]+\)/g,
      '',
    );
  }
};