Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
[WEEX][Weex-Android] Fix Compile Error (#2449)
Browse files Browse the repository at this point in the history
  • Loading branch information
gubaojian authored and YorkShen committed May 16, 2019
1 parent b54cce6 commit 20d075a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ int ScriptSideInQueue::UpdateInitFrameworkParams(const std::string& key, const s
LOGD("ScriptSideInQueue::UpdateInitFrameworkParams");
weexTaskQueue_->addTask(new UpdateInitFrameworkParamsTask(key, value, desc));
if (WeexEnv::getEnv()->enableBackupThread()) {
UpdateInitFrameworkParamsTask* task = new UpdateInitFrameworkParamsTask(key, value, desc)
UpdateInitFrameworkParamsTask* task = new UpdateInitFrameworkParamsTask(key, value, desc);
if(WeexEnv::getEnv()->can_m_cache_task_() && weexTaskQueue_bk_ == nullptr){
WeexEnv::getEnv()->m_task_cache_.push_back(task);
} else {
Expand Down

0 comments on commit 20d075a

Please sign in to comment.