mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Sync
- Modifed the column 0 task indicator from '[' to '{', for backlog.data lines.
This commit is contained in:
parent
4133d29cca
commit
58084f6d7a
1 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ int CmdSync::execute (std::string& output)
|
||||||
split (lines, payload, "\n");
|
split (lines, payload, "\n");
|
||||||
std::vector <std::string>::iterator i;
|
std::vector <std::string>::iterator i;
|
||||||
for (i = lines.begin (); i != lines.end (); ++i)
|
for (i = lines.begin (); i != lines.end (); ++i)
|
||||||
if ((*i)[0] == '[')
|
if ((*i)[0] == '{')
|
||||||
++upload_count;
|
++upload_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@ int CmdSync::execute (std::string& output)
|
||||||
std::vector <std::string>::iterator line;
|
std::vector <std::string>::iterator line;
|
||||||
for (line = lines.begin (); line != lines.end (); ++line)
|
for (line = lines.begin (); line != lines.end (); ++line)
|
||||||
{
|
{
|
||||||
if ((*line)[0] == '[')
|
if ((*line)[0] == '{')
|
||||||
{
|
{
|
||||||
++download_count;
|
++download_count;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue