Skip to content

Commit

Permalink
Merge pull request #2838 from bemusementpark/add-download-link
Browse files Browse the repository at this point in the history
Add download link
  • Loading branch information
Bilb committed Aug 1, 2023
2 parents adca1e8 + a2a9193 commit d2bccd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Session Desktop

[Download at getsession.org](https://getsession.org/download)

## Summary

Session integrates directly with [Oxen Service Nodes](https://docs.oxen.io/about-the-oxen-blockchain/oxen-service-nodes), which are a set of distributed, decentralized and Sybil resistant nodes. Service Nodes act as servers which store messages offline, and a set of nodes which allow for onion routing functionality obfuscating users IP Addresses. For a full understanding of how Session works, read the [Session Whitepaper](https://getsession.org/whitepaper).
Expand Down
4 changes: 2 additions & 2 deletions ts/test/automation/setup/beforeEach.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ function cleanUpOtherTest() {
alreadyCleanedWaiting = true;

const parentFolderOfAllDataPath = isMacOS()
? '~/Library/Application Support/'
? join(homedir(), 'Library', 'Application Support')
: isLinux()
? `${homedir()}/.config/`
? join(homedir(), '.config')
: null;
if (!parentFolderOfAllDataPath) {
throw new Error('Only macOS is currrently supported ');
Expand Down

0 comments on commit d2bccd1

Please sign in to comment.