File tree 5 files changed +12
-3
lines changed
browser-extension-oauth2/src
common/services/integration/onenote
5 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.5.4
4
+
5
+ ### Bug fixes
6
+
7
+ - Fixes MS OneNote export issue
8
+
3
9
## 1.5.3
4
10
5
11
### Bug fixes
Original file line number Diff line number Diff line change @@ -47,6 +47,9 @@ class Oauth2 {
47
47
if ( params . state !== state ) {
48
48
throw new Error ( 'Invalid state.' ) ;
49
49
}
50
+ if ( params . error ) {
51
+ throw new Error ( params . error ) ;
52
+ }
50
53
return this . storage
51
54
. set ( ACESS_TOKEN_KEY , accessToken )
52
55
. then ( ( ) => accessToken ) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class OneNote extends Service {
10
10
const clientId =
11
11
manifest . browser === 'firefox'
12
12
? '5a06bf8d-6526-4b65-a85b-221f6dde2639'
13
- : 'ab2e71d8-340a-4889-8039-26b70504871c ' ;
13
+ : '24fa7402-009b-4526-b067-e6de468fbcc0 ' ;
14
14
this . oauth2 = new Oauth2 ( {
15
15
provider : this . namespace ,
16
16
authorization_endpoint :
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " YiNote" ,
3
- "version" : " 1.5.3 " ,
3
+ "version" : " 1.5.4 " ,
4
4
"description" : " Most efficient way to take & share time-stamped notes while watching videos!" ,
5
5
"icons" : {
6
6
"16" : " icons/icon-16.png" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @yi-note/extension" ,
3
- "version" : " 1.5.3 " ,
3
+ "version" : " 1.5.4 " ,
4
4
"description" : " Most efficient way to take & share time-stamped notes while watching videos!" ,
5
5
"private" : false ,
6
6
"keywords" : [
You can’t perform that action at this time.
0 commit comments