Reopen a tab on only current tab
This commit is contained in:
parent
9a4dfcbb9f
commit
f43345a3a5
1 changed files with 8 additions and 4 deletions
|
@ -59,13 +59,17 @@ const closeTabsByKeywordsForce = (keyword) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const reopenTab = () => {
|
const reopenTab = () => {
|
||||||
return browser.sessions.getRecentlyClosed({
|
let window = null;
|
||||||
maxResults: 1
|
return browser.windows.getCurrent().then().then((w) => {
|
||||||
|
window = w;
|
||||||
|
return browser.sessions.getRecentlyClosed();
|
||||||
}).then((sessions) => {
|
}).then((sessions) => {
|
||||||
if (sessions.length === 0) {
|
let session = sessions.find((s) => {
|
||||||
|
return s.tab && s.tab.windowId === window.id;
|
||||||
|
});
|
||||||
|
if (!session) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let session = sessions[0];
|
|
||||||
if (session.tab) {
|
if (session.tab) {
|
||||||
return browser.sessions.restore(session.tab.sessionId);
|
return browser.sessions.restore(session.tab.sessionId);
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue