Skip to content

Commit

Permalink
Bumping version to 1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Dec 21, 2018
1 parent 9ff859c commit 337ae9d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## 1.0.7 - 2018-12-21
## 1.0.9 - 2018-12-21
* Christmas edition

## 0.16.25 - 2018-12-18
Expand Down
4 changes: 2 additions & 2 deletions src/Client/ReleaseNotes.fs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module internal ReleaseNotes

let Version = "1.0.7"
let Version = "1.0.9"

let IsPrerelease = false

let Notes = """
# Release Notes
## 1.0.7 - 2018-12-21
## 1.0.9 - 2018-12-21
* Christmas edition
## 0.16.25 - 2018-12-18
Expand Down
7 changes: 5 additions & 2 deletions src/Server/AzureTable.fs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ let saveTag (userID:string) (tag:Tag) =
tagsTable.ExecuteAsync operation


let saveLinks (tag:Tag) (urls:string []) =
let saveLinks (tag:Tag) (urls:string []) = task {
let batch = TableBatchOperation()
let mutable i = 0
for url in urls do
Expand All @@ -171,7 +171,10 @@ let saveLinks (tag:Tag) (urls:string []) =
entity.Properties.["Url"] <- EntityProperty.GeneratePropertyForString url
batch.InsertOrReplace entity
i <- i + 1
linksTable.ExecuteBatchAsync batch
if i > 0 then
let! _ = linksTable.ExecuteBatchAsync batch
()
}

let saveRequest (userID:string) (token:string) =
let entity = DynamicTableEntity()
Expand Down

0 comments on commit 337ae9d

Please sign in to comment.