Skip to content

Commit

Permalink
Merge branch 'master' into remove-down-server
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Aug 14, 2023
2 parents eaffa24 + 307dea3 commit 7062562
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
})();
</script>
<link href='//fonts.googleapis.com/css?family=Lato:400,700|Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="icon" href="/static/favicon.ico" type="image/x-icon"/>
<link rel="icon" href="{{ site.baseurl }}/static/favicon.ico" type="image/x-icon"/>
</head>

<body data-spy="scroll" data-target="#sidebar">
Expand Down
8 changes: 4 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ db.replicate.to('http://example.com/mydb');

<img
class="icon icon-lg"
src="{{ site.base_url }}/static/img/index/node.svg"
src="{{ site.baseurl }}/static/img/index/node.svg"
alt=""
/>

Expand All @@ -72,7 +72,7 @@ db.replicate.to('http://example.com/mydb');

<img
class="icon icon-lg"
src="{{ site.base_url }}/static/img/index/light.svg"
src="{{ site.baseurl }}/static/img/index/light.svg"
alt=""
/>

Expand All @@ -86,7 +86,7 @@ db.replicate.to('http://example.com/mydb');

<img
class="icon icon-lg"
src="{{ site.base_url }}/static/img/index/learn.svg"
src="{{ site.baseurl }}/static/img/index/learn.svg"
alt=""
/>

Expand All @@ -99,7 +99,7 @@ db.replicate.to('http://example.com/mydb');

<img
class="icon icon-lg"
src="{{ site.base_url }}/static/img/index/open.svg"
src="{{ site.baseurl }}/static/img/index/open.svg"
alt=""
/>

Expand Down
1 change: 1 addition & 0 deletions packages/node_modules/pouchdb-core/src/adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,7 @@ class AbstractPouchDB extends EventEmitter {
cb = opts;
opts = {};
}
opts = opts || {};
if (typeof id !== 'string') {
return cb(createError(INVALID_ID));
}
Expand Down

0 comments on commit 7062562

Please sign in to comment.