Skip to content

Commit

Permalink
Made appId JustUsed specific by adding "JustUsed_" in front of it
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Filetti committed Dec 17, 2015
1 parent 384a809 commit db45570
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions JustUsed/DiMe Data/DocumentInformationElement.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class DocumentInformationElement: DiMeBase {
init(fromSafariHist histItem: BrowserHistItem) {
super.init()

theDictionary["appId"] = histItem.url.sha1()
theDictionary["appId"] = "JustUsed_\(histItem.url.sha1())"
theDictionary["mimeType"] = "text/url"
theDictionary["uri"] = histItem.url
if let title = histItem.title {
Expand Down Expand Up @@ -64,7 +64,7 @@ class DocumentInformationElement: DiMeBase {
id = histItem.path.sha1()
}

theDictionary["appId"] = id
theDictionary["appId"] = "JustUsed_\(id)"

// set everything else apart from plain text and id
theDictionary["mimeType"] = histItem.mime
Expand Down
2 changes: 1 addition & 1 deletion JustUsed/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1</string>
<string>1.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit db45570

Please sign in to comment.