Skip to content

Commit

Permalink
feat: 0.3.4 Fix false detection in iOS Edge
Browse files Browse the repository at this point in the history
  • Loading branch information
theajack3 committed Mar 10, 2023
1 parent 192fcf1 commit 5c9b2ad
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions scripts/version.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
-->
# Version Log:

## 0.3.4

Fix false detection issue in iOS Edge browser

## 0.3.3

1. Fixed the issue that an error may be reported in a non-browser environment
Expand Down
5 changes: 5 additions & 0 deletions scripts/version.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
* @Description: Coding something
-->
# Version Log:

## 0.3.4

1. 修复ios edge浏览器中的误检测问题

## 0.3.3

1. 修复在非浏览器环境引入可能报错的问题
Expand Down
2 changes: 1 addition & 1 deletion src/detector/sub-detector/date-to-string.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default class extends Detector {
constructor () {
super({
type: DetectorType.DateToString,
enabled: !IS.iosChrome, // iosChrome 中会有bug
enabled: !IS.iosChrome && !IS.iosEdge, // iosChrome 中会有bug
});
}

Expand Down

0 comments on commit 5c9b2ad

Please sign in to comment.