Skip to content

Commit 740ad16

Browse files
committed
fix(extension): note timestamp catching issue
fixes #53
1 parent 484341e commit 740ad16

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.5.3
4+
5+
### Bug fixes
6+
7+
- [#53](https://github.com/shuowu/yi-note/issues/53) Fix timestamp catching issue
8+
39
## 1.5.2
410

511
### Bug fixes

packages/extension/manifest.common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "YiNote",
3-
"version": "1.5.2",
3+
"version": "1.5.3",
44
"description": "Most efficient way to take & share time-stamped notes while watching videos!",
55
"icons": {
66
"16": "icons/icon-16.png",

packages/extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@yi-note/extension",
3-
"version": "1.5.2",
3+
"version": "1.5.3",
44
"description": "Most efficient way to take & share time-stamped notes while watching videos!",
55
"private": false,
66
"keywords": [

packages/extension/src/ui/services/player/HTML5Player.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ export default class HTML5Player extends Player {
1818
throw new Error('Player initial error');
1919
}
2020

21+
// TODO: move to InstagramPlayer class
2122
// Set crossorigin attribute to enable screenshot
22-
this.video.setAttribute('crossorigin', 'anonymous');
23-
this.video.load();
23+
// this.video.setAttribute('crossorigin', 'anonymous');
24+
// this.video.load();
2425
}
2526

2627
getVideoElement() {

0 commit comments

Comments
 (0)