aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/instagram/index.js
blob: 12ff25a447c549b4bece8fdb55e1f4bbac9aab59 (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,
      ""
    );
  }
};