Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#6 #7

Merged
merged 1 commit into from
Oct 12, 2021
Merged

#6 #7

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 0.0.5
* Added support to lister to other users from different proejct of same account.
## 0.0.4
* Changes to dependency from uuid4 to uuid to support react.
## 0.0.3
Expand Down
2 changes: 1 addition & 1 deletion dist/roam.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "roam-js",
"version": "0.0.4",
"version": "0.0.5",
"description": "Roam Javascript SDK to listen to location updates.",
"main": "src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ function Initialize(apikey) {
debug("Details of the key:", data)
const accountID = data['account_id']
const projectID = data['project_id']
locationTopicPrefix = prefix+'locations/'+accountID+'/'+projectID+'/'
locationTopicPrefix = prefix+'locations/'+accountID+'/'+'+'+'/'
eventTopicPrefix = prefix + 'events/'+accountID + '/' + projectID + '/'
var credentials = generateCredentials(apikey)
var clientID = credentials.clientID;
Expand Down